diff --git a/erpnext/accounts/doctype/account/account.py b/erpnext/accounts/doctype/account/account.py index fb44694849..3cebdbcf6f 100644 --- a/erpnext/accounts/doctype/account/account.py +++ b/erpnext/accounts/doctype/account/account.py @@ -39,7 +39,7 @@ class Account(Document): par = frappe.db.get_value("Account", self.parent_account, ["name", "group_or_ledger", "report_type"], as_dict=1) if not par: - throw(_("Parent account does not exists")) + throw(_("Parent account does not exist")) elif par["name"] == self.name: throw(_("You can not assign itself as parent account")) elif par["group_or_ledger"] != 'Group': @@ -117,8 +117,7 @@ class Account(Document): def validate_warehouse(self, warehouse): if frappe.db.get_value("Stock Ledger Entry", {"warehouse": warehouse}): - throw(_("Stock transactions exist against warehouse ") + warehouse + - _(" .You can not assign / modify / remove Master Name")) + throw(_("Stock entries exist against warehouse {0} cannot re-assign or modify 'Master Name'").format(warehouse)) def update_nsm_model(self): """update lft, rgt indices for nested set model""" @@ -194,7 +193,7 @@ class Account(Document): # Validate properties before merging if merge: if not frappe.db.exists("Account", new): - throw(_("Account ") + new +_(" does not exists")) + throw(_("Account {0} does not exist").format(new)) val = list(frappe.db.get_value("Account", new_account, ["group_or_ledger", "report_type", "company"])) diff --git a/erpnext/accounts/doctype/accounts_settings/accounts_settings.py b/erpnext/accounts/doctype/accounts_settings/accounts_settings.py index b7288e0469..f0890dd439 100644 --- a/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +++ b/erpnext/accounts/doctype/accounts_settings/accounts_settings.py @@ -6,24 +6,23 @@ from __future__ import unicode_literals import frappe from frappe import _ -from frappe.utils import cint +from frappe.utils import cint, comma_and from frappe.model.document import Document class AccountsSettings(Document): def on_update(self): frappe.db.set_default("auto_accounting_for_stock", self.auto_accounting_for_stock) - + if cint(self.auto_accounting_for_stock): # set default perpetual account in company for company in frappe.db.sql("select name from tabCompany"): frappe.get_doc("Company", company[0]).save() - + # Create account head for warehouses warehouse_list = frappe.db.sql("select name, company from tabWarehouse", as_dict=1) warehouse_with_no_company = [d.name for d in warehouse_list if not d.company] if warehouse_with_no_company: - frappe.throw(_("Company is missing in following warehouses") + ": \n" + - "\n".join(warehouse_with_no_company)) + frappe.throw(_("Company is missing in warehouses {0}").format(comma_and(warehouse_with_no_company))) for wh in warehouse_list: wh_doc = frappe.get_doc("Warehouse", wh.name) - wh_doc.save() \ No newline at end of file + wh_doc.save() diff --git a/erpnext/accounts/doctype/budget_distribution/budget_distribution.py b/erpnext/accounts/doctype/budget_distribution/budget_distribution.py index 2cc5015c4d..1b1a8ecc4c 100644 --- a/erpnext/accounts/doctype/budget_distribution/budget_distribution.py +++ b/erpnext/accounts/doctype/budget_distribution/budget_distribution.py @@ -17,9 +17,9 @@ class BudgetDistribution(Document): mnth.month = m mnth.idx = idx idx += 1 - + def validate(self): total = sum([flt(d.percentage_allocation) for d in self.get("budget_distribution_details")]) - + if total != 100.0: - frappe.throw(_("Percentage Allocation should be equal to ") + "100%") \ No newline at end of file + frappe.throw(_("Percentage Allocation should be equal to 100%")) diff --git a/erpnext/accounts/doctype/fiscal_year/fiscal_year.py b/erpnext/accounts/doctype/fiscal_year/fiscal_year.py index 14461ff633..0a7a98565a 100644 --- a/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +++ b/erpnext/accounts/doctype/fiscal_year/fiscal_year.py @@ -41,4 +41,4 @@ class FiscalYear(Document): for fiscal_year, ysd, yed in year_start_end_dates: if (getdate(self.year_start_date) == ysd and getdate(self.year_end_date) == yed) \ and (not frappe.flags.in_test): - frappe.throw(_("Year Start Date and Year End Date are already set in Fiscal Year: ") + fiscal_year) + frappe.throw(_("Year Start Date and Year End Date are already set in Fiscal Year {0}").format(fiscal_year)) diff --git a/erpnext/accounts/doctype/gl_entry/gl_entry.py b/erpnext/accounts/doctype/gl_entry/gl_entry.py index 2390e770c9..7cd27977d0 100644 --- a/erpnext/accounts/doctype/gl_entry/gl_entry.py +++ b/erpnext/accounts/doctype/gl_entry/gl_entry.py @@ -33,7 +33,7 @@ class GLEntry(Document): mandatory = ['account','remarks','voucher_type','voucher_no','fiscal_year','company'] for k in mandatory: if not self.get(k): - frappe.throw(_("{0} is required").format(k)) + frappe.throw(_("{0} is required").format(self.meta.get_label(k))) # Zero value transaction is not allowed if not (flt(self.debit) or flt(self.credit)): diff --git a/erpnext/accounts/doctype/journal_voucher/journal_voucher.py b/erpnext/accounts/doctype/journal_voucher/journal_voucher.py index 94882e2a79..1314c85448 100644 --- a/erpnext/accounts/doctype/journal_voucher/journal_voucher.py +++ b/erpnext/accounts/doctype/journal_voucher/journal_voucher.py @@ -120,17 +120,16 @@ class JournalVoucher(AccountsController): for d in self.get('entries'): if d.against_invoice and d.credit: currency = frappe.db.get_value("Sales Invoice", d.against_invoice, "currency") - r.append('%s %s against Invoice: %s' % - (cstr(currency), fmt_money(flt(d.credit)), d.against_invoice)) + r.append(_("{0} {1} against Invoice {1}").format(currency, fmt_money(flt(d.credit)), d.against_invoice)) if d.against_voucher and d.debit: bill_no = frappe.db.sql("""select bill_no, bill_date, currency from `tabPurchase Invoice` where name=%s""", d.against_voucher) if bill_no and bill_no[0][0] and bill_no[0][0].lower().strip() \ not in ['na', 'not applicable', 'none']: - r.append('%s %s against Bill %s dated %s' % - (cstr(bill_no[0][2]), fmt_money(flt(d.debit)), bill_no[0][0], - bill_no[0][1] and formatdate(bill_no[0][1].strftime('%Y-%m-%d')) or '')) + r.append(_('{0} {1} against Bill {2} dated {3}').format(bill_no[0][2], + fmt_money(flt(d.debit)), bill_no[0][0], + bill_no[0][1] and formatdate(bill_no[0][1].strftime('%Y-%m-%d')))) if self.user_remark: r.append(_("Note: {0}").format(self.user_remark)) diff --git a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py index d8661e19d8..862a7619d6 100644 --- a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +++ b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import frappe -from frappe.utils import cstr, flt +from frappe.utils import flt from frappe import _ from erpnext.controllers.accounts_controller import AccountsController @@ -16,37 +16,35 @@ class PeriodClosingVoucher(AccountsController): self.make_gl_entries() def on_cancel(self): - frappe.db.sql("""delete from `tabGL Entry` + frappe.db.sql("""delete from `tabGL Entry` where voucher_type = 'Period Closing Voucher' and voucher_no=%s""", self.name) def validate_account_head(self): if frappe.db.get_value("Account", self.closing_account_head, "report_type") \ != "Balance Sheet": - frappe.throw(_("Account") + ": " + self.closing_account_head + - _("must be a Liability account")) + frappe.throw(_("Closing Account {0} must be of type 'Liability'").format(self.closing_account_head)) def validate_posting_date(self): from erpnext.accounts.utils import get_fiscal_year self.year_start_date = get_fiscal_year(self.posting_date, self.fiscal_year)[1] pce = frappe.db.sql("""select name from `tabPeriod Closing Voucher` - where posting_date > %s and fiscal_year = %s and docstatus = 1""", + where posting_date > %s and fiscal_year = %s and docstatus = 1""", (self.posting_date, self.fiscal_year)) if pce and pce[0][0]: - frappe.throw(_("Another Period Closing Entry") + ": " + cstr(pce[0][0]) + - _("has been made after posting date") + ": " + self.posting_date) - + frappe.throw(_("Another Period Closing Entry {0} has been made after {1}").format(pce[0][0], self.posting_date)) + def get_pl_balances(self): """Get balance for pl accounts""" return frappe.db.sql(""" select t1.account, sum(ifnull(t1.debit,0))-sum(ifnull(t1.credit,0)) as balance - from `tabGL Entry` t1, `tabAccount` t2 + from `tabGL Entry` t1, `tabAccount` t2 where t1.account = t2.name and ifnull(t2.report_type, '') = 'Profit and Loss' - and t2.docstatus < 2 and t2.company = %s - and t1.posting_date between %s and %s + and t2.docstatus < 2 and t2.company = %s + and t1.posting_date between %s and %s group by t1.account """, (self.company, self.get("year_start_date"), self.posting_date), as_dict=1) - + def make_gl_entries(self): gl_entries = [] net_pl_balance = 0 @@ -58,7 +56,7 @@ class PeriodClosingVoucher(AccountsController): "debit": abs(flt(acc.balance)) if flt(acc.balance) < 0 else 0, "credit": abs(flt(acc.balance)) if flt(acc.balance) > 0 else 0, })) - + net_pl_balance += flt(acc.balance) if net_pl_balance: @@ -67,6 +65,6 @@ class PeriodClosingVoucher(AccountsController): "debit": abs(net_pl_balance) if net_pl_balance > 0 else 0, "credit": abs(net_pl_balance) if net_pl_balance < 0 else 0 })) - + from erpnext.accounts.general_ledger import make_gl_entries make_gl_entries(gl_entries) diff --git a/erpnext/accounts/doctype/pricing_rule/pricing_rule.py b/erpnext/accounts/doctype/pricing_rule/pricing_rule.py index 8a64cb4d23..3374e4a50e 100644 --- a/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +++ b/erpnext/accounts/doctype/pricing_rule/pricing_rule.py @@ -9,16 +9,15 @@ from frappe import throw, _ from frappe.model.controller import DocListController class PricingRule(DocListController): - def validate(self): self.validate_mandatory() self.cleanup_fields_value() def validate_mandatory(self): for field in ["apply_on", "applicable_for", "price_or_discount"]: - val = self.get("applicable_for") - if val and not self.get(frappe.scrub(val)): - throw(_("{0} is required").format(val), frappe.MandatoryError) + tocheck = frappe.scrub(self.get(field) or "") + if tocheck and not self.get(tocheck): + throw(_("{0} is required").format(self.meta.get_label(tocheck)), frappe.MandatoryError) def cleanup_fields_value(self): for logic_field in ["apply_on", "applicable_for", "price_or_discount"]: diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py index b9dda025a6..21b088566a 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -95,7 +95,7 @@ class PurchaseInvoice(BuyingController): if not self.remarks and self.bill_date: self.remarks = (self.remarks or '') + "\n" \ - + _("Against Bill %s dated %s").format(self.bill_no, formatdate(self.bill_date)) + + _("Against Bill {0} dated {1}").format(self.bill_no, formatdate(self.bill_date)) if not self.remarks: self.remarks = "No Remarks" diff --git a/erpnext/accounts/general_ledger.py b/erpnext/accounts/general_ledger.py index 25ea78f3bb..8659b624a4 100644 --- a/erpnext/accounts/general_ledger.py +++ b/erpnext/accounts/general_ledger.py @@ -85,8 +85,7 @@ def make_entry(args, adv_adj, update_outstanding): def validate_total_debit_credit(total_debit, total_credit): if abs(total_debit - total_credit) > 0.005: - frappe.throw(_("Debit and Credit not equal for this voucher: Diff (Debit) is ") + - cstr(total_debit - total_credit)) + frappe.throw(_("Debit and Credit not equal for this voucher. Difference is {0}.").format(total_debit - total_credit)) def validate_account_for_auto_accounting_for_stock(gl_map): if gl_map[0].voucher_type=="Journal Voucher": @@ -95,9 +94,7 @@ def validate_account_for_auto_accounting_for_stock(gl_map): for entry in gl_map: if entry.account in aii_accounts: - frappe.throw(_("Account") + ": " + entry.account + - _(" can only be debited/credited through Stock transactions"), - StockAccountInvalidTransaction) + frappe.throw(_("Account {0} can only be updated via Stock Transactions"), StockAccountInvalidTransaction) def delete_gl_entries(gl_entries=None, voucher_type=None, voucher_no=None, @@ -121,5 +118,5 @@ def delete_gl_entries(gl_entries=None, voucher_type=None, voucher_no=None, validate_expense_against_budget(entry) if entry.get("against_voucher") and update_outstanding == 'Yes': - update_outstanding_amt(entry["account"], entry.get("against_voucher_type"), - entry.get("against_voucher"), on_cancel=True) + update_outstanding_amt(entry["account"], entry.get("against_voucher_type"), + entry.get("against_voucher"), on_cancel=True) diff --git a/erpnext/accounts/utils.py b/erpnext/accounts/utils.py index e404fbb8f7..be29f34945 100644 --- a/erpnext/accounts/utils.py +++ b/erpnext/accounts/utils.py @@ -225,7 +225,7 @@ def remove_against_link_from_jv(ref_type, ref_no, against_field): and voucher_no != ifnull(against_voucher, '')""", (now(), frappe.session.user, ref_type, ref_no)) - frappe.msgprint(_("Following Journal Vouchers Unlinked: {0}".format("\n".join(linked_jv)))) + frappe.msgprint(_("Journal Vouchers {0} are un-linked".format("\n".join(linked_jv)))) @frappe.whitelist() @@ -233,9 +233,7 @@ def get_company_default(company, fieldname): value = frappe.db.get_value("Company", company, fieldname) if not value: - throw(_("Please mention default value for '") + - _(frappe.get_meta("Company").get_label(fieldname) + - _("' in Company: ") + company)) + throw(_("Please set default value {0} in Company {0}").format(frappe.get_meta("Company").get_label(fieldname), company)) return value diff --git a/erpnext/controllers/selling_controller.py b/erpnext/controllers/selling_controller.py index bacc8ec92a..0a0b4f0495 100644 --- a/erpnext/controllers/selling_controller.py +++ b/erpnext/controllers/selling_controller.py @@ -281,8 +281,7 @@ class SellingController(StockController): discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount")) if discount and flt(d.discount_percentage) > discount: - frappe.throw(_("You cannot give more than ") + cstr(discount) + "% " + - _("discount on Item Code") + ": " + cstr(d.item_code)) + frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount)) def get_item_list(self): il = [] @@ -293,8 +292,7 @@ class SellingController(StockController): if self.doctype == "Sales Order": if (frappe.db.get_value("Item", d.item_code, "is_stock_item") == 'Yes' or self.has_sales_bom(d.item_code)) and not d.warehouse: - frappe.throw(_("Please enter Reserved Warehouse for item ") + - d.item_code + _(" as it is stock Item or packing item")) + frappe.throw(_("Reserved Warehouse required for stock Item {0} in row {1}").format(d.item, d.idx)) reserved_warehouse = d.warehouse if flt(d.qty) > flt(d.delivered_qty): reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty) @@ -373,7 +371,7 @@ def check_active_sales_items(obj): is_service_item, income_account from tabItem where name = %s""", d.item_code, as_dict=True)[0] if item.is_sales_item == 'No' and item.is_service_item == 'No': - frappe.throw(_("Item is neither Sales nor Service Item") + ": " + d.item_code) + frappe.throw(_("Item {0} must be Sales or Service Item in {1}").format(d.item_code, d.idx)) if getattr(d, "income_account", None) and not item.income_account: frappe.db.set_value("Item", d.item_code, "income_account", d.income_account) diff --git a/erpnext/controllers/stock_controller.py b/erpnext/controllers/stock_controller.py index b78392441d..ed0531e6dd 100644 --- a/erpnext/controllers/stock_controller.py +++ b/erpnext/controllers/stock_controller.py @@ -45,6 +45,8 @@ class StockController(AccountsController): for sle in sle_list: if warehouse_account.get(sle.warehouse): # from warehouse account + self.check_expense_account(detail) + gl_list.append(self.get_gl_dict({ "account": warehouse_account[sle.warehouse], "against": detail.expense_account, @@ -73,8 +75,6 @@ class StockController(AccountsController): def get_voucher_details(self, stock_ledger, default_expense_account, default_cost_center): if not default_expense_account: details = self.get(self.fname) - for d in details: - self.check_expense_account(d) else: details = [frappe._dict({ "name":d, @@ -231,10 +231,10 @@ class StockController(AccountsController): def check_expense_account(self, item): if item.meta.get_field("expense_account") and not item.expense_account: - frappe.throw(_("Expense or Difference account is mandatory for Item {0}").format(item.item_code)) + frappe.throw(_("Expense or Difference account is mandatory for Item {0} as there is difference in value").format(item.item_code)) - if item.meta.get_field("expense_account") and not item.cost_center: - frappe.throw(_("""Cost Center is mandatory for item {0}""").format(item.item_code)) + if getattr(item, "expense_account", None) and not item.cost_center: + frappe.throw(_("""Cost Center is mandatory for Item {0}""").format(item.item_code)) def get_sl_entries(self, d, args): sl_dict = { diff --git a/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py b/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py index d3a21fab2b..6e33e6a351 100644 --- a/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py +++ b/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py @@ -6,10 +6,6 @@ import frappe from frappe.utils import cint, cstr, flt, nowdate, comma_and from frappe import msgprint, _ - - - - from frappe.model.document import Document class LeaveControlPanel(Document): @@ -33,7 +29,7 @@ class LeaveControlPanel(Document): def validate_values(self): for f in ["fiscal_year", "leave_type", "no_of_days"]: if not self.get(f): - frappe.throw(_(self.meta.get_label(f)) + _(" is mandatory")) + frappe.throw(_("{0} is required").format(self.meta.get_label(f))) def allocate_leave(self): self.validate_values() diff --git a/erpnext/hr/doctype/salary_manager/salary_manager.js b/erpnext/hr/doctype/salary_manager/salary_manager.js index 55ab920657..bbae9acfc5 100644 --- a/erpnext/hr/doctype/salary_manager/salary_manager.js +++ b/erpnext/hr/doctype/salary_manager/salary_manager.js @@ -4,7 +4,7 @@ var display_activity_log = function(msg) { if(!pscript.ss_html) pscript.ss_html = $a(cur_frm.fields_dict['activity_log'].wrapper,'div'); - pscript.ss_html.innerHTML = + pscript.ss_html.innerHTML = '
'+__("Activity Log:")+'
'+msg+'
'; } @@ -19,7 +19,7 @@ cur_frm.cscript.create_salary_slip = function(doc, cdt, cdn) { } cur_frm.cscript.submit_salary_slip = function(doc, cdt, cdn) { - var check = confirm(__("Do you really want to Submit all Salary Slip for month : ") + doc.month+ __(" and fiscal year : ")+doc.fiscal_year); + var check = confirm(__("Do you really want to Submit all Salary Slip for month {0} and year {1}", [doc.month, doc.fiscal_year])); if(check){ var callback = function(r, rt){ if (r.message) @@ -42,8 +42,7 @@ cur_frm.cscript.make_jv = function(doc, dt, dn) { var jv = frappe.model.make_new_doc_and_get_name('Journal Voucher'); jv = locals['Journal Voucher'][jv]; jv.voucher_type = 'Bank Voucher'; - jv.user_remark = __('Payment of salary for the month: ') + doc.month + - __(' and fiscal year: ') + doc.fiscal_year; + jv.user_remark = __('Payment of salary for the month {0} and year {1}', [doc.month, doc.fiscal_year]); jv.fiscal_year = doc.fiscal_year; jv.company = doc.company; jv.posting_date = dateutil.obj_to_str(new Date()); diff --git a/erpnext/manufacturing/doctype/bom/bom.py b/erpnext/manufacturing/doctype/bom/bom.py index d507f5b81c..46dd77e283 100644 --- a/erpnext/manufacturing/doctype/bom/bom.py +++ b/erpnext/manufacturing/doctype/bom/bom.py @@ -180,7 +180,7 @@ class BOM(Document): """ Validate main FG item""" item = self.get_item_det(self.item) if not item: - frappe.throw(_("Item {0} does not exists in the system or has expired").format(self.item)) + frappe.throw(_("Item {0} does not exist in the system or has expired").format(self.item)) elif item[0]['is_manufactured_item'] != 'Yes' \ and item[0]['is_sub_contracted_item'] != 'Yes': frappe.throw(_("Item {0} must be manufactured or sub-contracted").format(self.item)) diff --git a/erpnext/manufacturing/doctype/production_order/production_order.json b/erpnext/manufacturing/doctype/production_order/production_order.json index b1ff6289fe..674cf2cf18 100644 --- a/erpnext/manufacturing/doctype/production_order/production_order.json +++ b/erpnext/manufacturing/doctype/production_order/production_order.json @@ -1,234 +1,667 @@ { + "_last_update": null, + "_user_tags": null, + "allow_attach": null, + "allow_copy": null, + "allow_email": null, "allow_import": 1, + "allow_print": null, + "allow_rename": null, + "allow_trash": null, "autoname": "naming_series:", - "creation": "2013-01-10 16:34:16.000000", + "change_log": null, + "client_script": null, + "client_script_core": null, + "client_string": null, + "colour": null, + "creation": "2013-01-10 16:34:16", + "custom": null, + "default_print_format": null, + "description": null, "docstatus": 0, "doctype": "DocType", + "document_type": null, + "dt_template": null, "fields": [ { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, "fieldname": "item", "fieldtype": "Section Break", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, "label": "Item", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, "options": "icon-gift", - "permlevel": 0 + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": null, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, "default": "PRO", + "depends_on": null, + "description": null, "fieldname": "naming_series", "fieldtype": "Select", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, "label": "Series", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, "options": "\nPRO", "permlevel": 0, - "reqd": 1 - }, - { - "fieldname": "production_item", - "fieldtype": "Link", - "in_filter": 1, - "in_list_view": 1, - "label": "Item To Manufacture", - "oldfieldname": "production_item", - "oldfieldtype": "Link", - "options": "Item", - "permlevel": 0, - "read_only": 0, - "reqd": 1 - }, - { - "depends_on": "production_item", - "description": "Bill of Material to be considered for manufacturing", - "fieldname": "bom_no", - "fieldtype": "Link", - "in_list_view": 1, - "label": "BOM No", - "oldfieldname": "bom_no", - "oldfieldtype": "Link", - "options": "BOM", - "permlevel": 0, - "read_only": 0, - "reqd": 1 - }, - { - "default": "1", - "description": "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.", - "fieldname": "use_multi_level_bom", - "fieldtype": "Check", - "label": "Use Multi-Level BOM", - "permlevel": 0 - }, - { - "fieldname": "column_break1", - "fieldtype": "Column Break", - "oldfieldtype": "Column Break", - "permlevel": 0, - "read_only": 0, - "width": "50%" - }, - { - "description": "Manufacture against Sales Order", - "fieldname": "sales_order", - "fieldtype": "Link", - "label": "Sales Order", - "options": "Sales Order", - "permlevel": 0, - "read_only": 0 - }, - { - "depends_on": "production_item", - "fieldname": "qty", - "fieldtype": "Float", - "in_list_view": 1, - "label": "Qty To Manufacture", - "oldfieldname": "qty", - "oldfieldtype": "Currency", - "permlevel": 0, - "read_only": 0, - "reqd": 1 - }, - { - "depends_on": "eval:doc.docstatus==1", - "description": "Automatically updated via Stock Entry of type Manufacture/Repack", - "fieldname": "produced_qty", - "fieldtype": "Float", - "label": "Manufactured Qty", - "no_copy": 1, - "oldfieldname": "produced_qty", - "oldfieldtype": "Currency", - "permlevel": 0, - "read_only": 1 - }, - { - "depends_on": "sales_order", - "fieldname": "expected_delivery_date", - "fieldtype": "Date", - "label": "Expected Delivery Date", - "permlevel": 0, - "read_only": 1 - }, - { - "fieldname": "warehouses", - "fieldtype": "Section Break", - "label": "Warehouses", - "options": "icon-building", - "permlevel": 0 - }, - { - "depends_on": "production_item", - "description": "Manufactured quantity will be updated in this warehouse", - "fieldname": "fg_warehouse", - "fieldtype": "Link", - "in_list_view": 1, - "label": "For Warehouse", - "options": "Warehouse", - "permlevel": 0, - "read_only": 0, - "reqd": 0 - }, - { - "fieldname": "column_break_12", - "fieldtype": "Column Break", - "permlevel": 0 - }, - { - "fieldname": "wip_warehouse", - "fieldtype": "Link", - "label": "Work-in-Progress Warehouse", - "options": "Warehouse", - "permlevel": 0, - "reqd": 0 - }, - { - "fieldname": "more_info", - "fieldtype": "Section Break", - "label": "More Info", - "options": "icon-file-text", - "permlevel": 0, - "read_only": 0 + "print_hide": null, + "print_width": null, + "read_only": null, + "report_hide": null, + "reqd": 1, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, + "default": null, "depends_on": "eval:!doc.__islocal", + "description": null, "fieldname": "status", "fieldtype": "Select", + "hidden": null, + "ignore_restrictions": null, "in_filter": 1, "in_list_view": 1, "label": "Status", + "no_column": null, "no_copy": 1, "oldfieldname": "status", "oldfieldtype": "Select", "options": "\nDraft\nSubmitted\nStopped\nIn Process\nCompleted\nCancelled", "permlevel": 0, + "print_hide": null, + "print_width": null, "read_only": 1, + "report_hide": null, "reqd": 1, - "search_index": 1 + "search_index": 1, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, + "fieldname": "production_item", + "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": 1, + "in_list_view": 1, + "label": "Item To Manufacture", + "no_column": null, + "no_copy": null, + "oldfieldname": "production_item", + "oldfieldtype": "Link", + "options": "Item", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": 1, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": "production_item", + "description": "Bill of Material to be considered for manufacturing", + "fieldname": "bom_no", + "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": 1, + "label": "BOM No", + "no_column": null, + "no_copy": null, + "oldfieldname": "bom_no", + "oldfieldtype": "Link", + "options": "BOM", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": 1, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": "1", + "depends_on": null, + "description": "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.", + "fieldname": "use_multi_level_bom", + "fieldtype": "Check", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "Use Multi-Level BOM", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": null, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, + "fieldname": "column_break1", + "fieldtype": "Column Break", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": null, + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": "Column Break", + "options": null, + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": "50%" + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": "Manufacture against Sales Order", + "fieldname": "sales_order", + "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "Sales Order", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Sales Order", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": "production_item", + "description": null, + "fieldname": "qty", + "fieldtype": "Float", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": 1, + "label": "Qty To Manufacture", + "no_column": null, + "no_copy": null, + "oldfieldname": "qty", + "oldfieldtype": "Currency", + "options": null, + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": 1, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": "eval:doc.docstatus==1", + "description": "Automatically updated via Stock Entry of type Manufacture/Repack", + "fieldname": "produced_qty", + "fieldtype": "Float", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "Manufactured Qty", + "no_column": null, + "no_copy": 1, + "oldfieldname": "produced_qty", + "oldfieldtype": "Currency", + "options": null, + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 1, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": "sales_order", + "description": null, + "fieldname": "expected_delivery_date", + "fieldtype": "Date", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "Expected Delivery Date", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 1, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, + "fieldname": "warehouses", + "fieldtype": "Section Break", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "Warehouses", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": "icon-building", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": null, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": "production_item", + "description": "Manufactured quantity will be updated in this warehouse", + "fieldname": "fg_warehouse", + "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": 0, + "label": "For Warehouse", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Warehouse", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": 0, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, + "fieldname": "column_break_12", + "fieldtype": "Column Break", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": null, + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": null, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, + "fieldname": "wip_warehouse", + "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "Work-in-Progress Warehouse", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": "Warehouse", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": null, + "report_hide": null, + "reqd": 0, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, + "fieldname": "more_info", + "fieldtype": "Section Break", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": "More Info", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": "icon-file-text", + "permlevel": 0, + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null + }, + { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, "fieldname": "description", "fieldtype": "Small Text", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, "label": "Item Description", + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, "permlevel": 0, - "read_only": 1 + "print_hide": null, + "print_width": null, + "read_only": 1, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, "fieldname": "project_name", "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, "in_filter": 1, + "in_list_view": null, "label": "Project Name", + "no_column": null, + "no_copy": null, "oldfieldname": "project_name", "oldfieldtype": "Link", "options": "Project", "permlevel": 0, - "read_only": 0 + "print_hide": null, + "print_width": null, + "read_only": 0, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, "fieldname": "column_break2", "fieldtype": "Column Break", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, + "label": null, + "no_column": null, + "no_copy": null, + "oldfieldname": null, + "oldfieldtype": null, + "options": null, "permlevel": 0, + "print_hide": null, + "print_width": null, "read_only": 0, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, "width": "50%" }, { + "allow_on_submit": null, + "default": null, "depends_on": "production_item", + "description": null, "fieldname": "stock_uom", "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, "label": "Stock UOM", + "no_column": null, + "no_copy": null, "oldfieldname": "stock_uom", "oldfieldtype": "Data", "options": "UOM", "permlevel": 0, - "read_only": 1 + "print_hide": null, + "print_width": null, + "read_only": 1, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, "fieldname": "company", "fieldtype": "Link", + "hidden": null, + "ignore_restrictions": null, + "in_filter": null, + "in_list_view": null, "label": "Company", + "no_column": null, + "no_copy": null, "oldfieldname": "company", "oldfieldtype": "Link", "options": "Company", "permlevel": 0, + "print_hide": null, + "print_width": null, "read_only": 0, - "reqd": 1 + "report_hide": null, + "reqd": 1, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null }, { + "allow_on_submit": null, + "default": null, + "depends_on": null, + "description": null, "fieldname": "amended_from", "fieldtype": "Data", + "hidden": null, "ignore_restrictions": 1, + "in_filter": null, + "in_list_view": null, "label": "Amended From", + "no_column": null, "no_copy": 1, "oldfieldname": "amended_from", "oldfieldtype": "Data", + "options": null, "permlevel": 0, - "read_only": 1 + "print_hide": null, + "print_width": null, + "read_only": 1, + "report_hide": null, + "reqd": null, + "search_index": null, + "set_only_once": null, + "trigger": null, + "width": null } ], + "hide_heading": null, + "hide_toolbar": null, "icon": "icon-cogs", "idx": 1, "in_create": 0, + "in_dialog": null, "is_submittable": 1, - "modified": "2014-01-20 17:49:01.000000", + "is_transaction_doc": null, + "issingle": null, + "istable": null, + "max_attachments": null, + "menu_index": null, + "modified": "2014-04-16 11:31:11.764385", "modified_by": "Administrator", "module": "Manufacturing", "name": "Production Order", + "name_case": null, "owner": "Administrator", + "parent": null, + "parent_node": null, + "parentfield": null, + "parenttype": null, "permissions": [ { "amend": 1, @@ -236,13 +669,35 @@ "create": 1, "delete": 1, "email": 1, + "export": null, + "import": null, + "match": null, "permlevel": 0, "print": 1, "read": 1, "report": 1, + "restrict": null, + "restricted": null, "role": "Manufacturing User", "submit": 1, "write": 1 } - ] + ], + "plugin": null, + "print_outline": null, + "read_only": null, + "read_only_onload": null, + "search_fields": null, + "section_style": null, + "server_code": null, + "server_code_compiled": null, + "server_code_core": null, + "server_code_error": null, + "show_in_menu": null, + "smallicon": null, + "subject": null, + "tag_fields": null, + "title_field": null, + "use_template": null, + "version": null } \ No newline at end of file diff --git a/erpnext/manufacturing/doctype/production_order/production_order.py b/erpnext/manufacturing/doctype/production_order/production_order.py index 5c617fd69d..496d57707c 100644 --- a/erpnext/manufacturing/doctype/production_order/production_order.py +++ b/erpnext/manufacturing/doctype/production_order/production_order.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import frappe -from frappe.utils import cstr, flt, nowdate +from frappe.utils import flt, nowdate from frappe import _ from frappe.model.document import Document @@ -75,11 +75,8 @@ class ProductionOrder(Document): so_qty = flt(so_item_qty) + flt(dnpi_qty) if total_qty > so_qty: - frappe.throw(_("Total production order qty for item") + ": " + - cstr(self.production_item) + _(" against sales order") + ": " + - cstr(self.sales_order) + _(" will be ") + cstr(total_qty) + ", " + - _("which is greater than sales order qty ") + "(" + cstr(so_qty) + ")" + - _("Please reduce qty."), exc=OverProductionError) + frappe.throw(_("Cannot produce more Item {0} than Sales Order quantity {1}").format(self.production_item, + so_qty), OverProductionError) def stop_unstop(self, status): """ Called from client side on Stop/Unstop event""" @@ -115,7 +112,7 @@ class ProductionOrder(Document): produced_qty = flt(produced_qty[0][0]) if produced_qty else 0 if produced_qty > self.qty: - frappe.throw(_("Cannot manufacture more than the planned Quantity to Manufacture ({0}) in Production Order: {1}").format(self.qty, self.name), StockOverProductionError) + frappe.throw(_("Manufactured quantity {0} cannot be greater than planned quanitity {1} in Production Order {2}").format(produced_qty, self.qty, self.name, StockOverProductionError)) self.db_set("produced_qty", produced_qty) @@ -167,7 +164,7 @@ def get_item_details(item): return res @frappe.whitelist() -def make_stock_entry(production_order_id, purpose): +def make_stock_entry(production_order_id, purpose, qty=None): production_order = frappe.get_doc("Production Order", production_order_id) stock_entry = frappe.new_doc("Stock Entry") @@ -176,7 +173,7 @@ def make_stock_entry(production_order_id, purpose): stock_entry.company = production_order.company stock_entry.bom_no = production_order.bom_no stock_entry.use_multi_level_bom = production_order.use_multi_level_bom - stock_entry.fg_completed_qty = flt(production_order.qty) - flt(production_order.produced_qty) + stock_entry.fg_completed_qty = qty or (flt(production_order.qty) - flt(production_order.produced_qty)) if purpose=="Material Transfer": stock_entry.to_warehouse = production_order.wip_warehouse diff --git a/erpnext/manufacturing/doctype/production_order/test_production_order.py b/erpnext/manufacturing/doctype/production_order/test_production_order.py index 125a0164c1..4c563e6499 100644 --- a/erpnext/manufacturing/doctype/production_order/test_production_order.py +++ b/erpnext/manufacturing/doctype/production_order/test_production_order.py @@ -5,7 +5,6 @@ from __future__ import unicode_literals import unittest import frappe -from frappe.utils import cstr, getdate from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import set_perpetual_inventory from erpnext.manufacturing.doctype.production_order.production_order import make_stock_entry @@ -13,56 +12,69 @@ from erpnext.manufacturing.doctype.production_order.production_order import make class TestProductionOrder(unittest.TestCase): def test_planned_qty(self): set_perpetual_inventory(0) - frappe.db.sql("delete from `tabStock Ledger Entry`") - frappe.db.sql("""delete from `tabBin`""") - frappe.db.sql("""delete from `tabGL Entry`""") - pro_doc = frappe.copy_doc(test_records[0]) pro_doc.insert() pro_doc.submit() - from erpnext.stock.doctype.stock_entry.test_stock_entry import test_records as se_test_records - mr1 = frappe.copy_doc(se_test_records[0]) - mr1.insert() - mr1.submit() + # add raw materials to stores + s = frappe.new_doc("Stock Entry") + s.purpose = "Material Receipt" + s.company = "_Test Company" + s.append("mtn_details", { + "item_code": "_Test Item", + "t_warehouse": "Stores - _TC", + "qty": 100, + "incoming_rate": 5000 + }) + s.insert() + s.submit() - mr2 = frappe.copy_doc(se_test_records[0]) - mr2.get("mtn_details")[0].item_code = "_Test Item Home Desktop 100" - mr2.insert() - mr2.submit() + # add raw materials to stores + s = frappe.new_doc("Stock Entry") + s.purpose = "Material Receipt" + s.company = "_Test Company" + s.append("mtn_details", { + "item_code": "_Test Item Home Desktop 100", + "t_warehouse": "Stores - _TC", + "qty": 100, + "incoming_rate": 1000 + }) + s.insert() + s.submit() - stock_entry = make_stock_entry(pro_doc.name, "Manufacture/Repack") - stock_entry = frappe.get_doc(stock_entry) - stock_entry.fiscal_year = "_Test Fiscal Year 2013" - stock_entry.fg_completed_qty = 4 - stock_entry.posting_date = "2013-05-12" - stock_entry.fiscal_year = "_Test Fiscal Year 2013" - stock_entry.set("mtn_details", []) - stock_entry.run_method("get_items") - stock_entry.submit() + # from stores to wip + s = frappe.get_doc(make_stock_entry(pro_doc.name, "Material Transfer", 4)) + for d in s.get("mtn_details"): + d.s_warehouse = "Stores - _TC" + s.insert() + s.submit() + + # from wip to fg + s = frappe.get_doc(make_stock_entry(pro_doc.name, "Manufacture/Repack", 4)) + s.insert() + s.submit() self.assertEqual(frappe.db.get_value("Production Order", pro_doc.name, "produced_qty"), 4) self.assertEqual(frappe.db.get_value("Bin", {"item_code": "_Test FG Item", "warehouse": "_Test Warehouse 1 - _TC"}, "planned_qty"), 6) - return pro_doc.name + return pro_doc def test_over_production(self): from erpnext.manufacturing.doctype.production_order.production_order import StockOverProductionError - pro_order = self.test_planned_qty() + pro_doc = self.test_planned_qty() - stock_entry = make_stock_entry(pro_order, "Manufacture/Repack") - stock_entry = frappe.get_doc(stock_entry) - stock_entry.posting_date = "2013-05-12" - stock_entry.fiscal_year = "_Test Fiscal Year 2013" - stock_entry.fg_completed_qty = 15 - stock_entry.set("mtn_details", []) - stock_entry.run_method("get_items") - stock_entry.insert() + s = frappe.get_doc(make_stock_entry(pro_doc.name, "Material Transfer", 7)) + for d in s.get("mtn_details"): + d.s_warehouse = "Stores - _TC" + s.insert() + s.submit() - self.assertRaises(StockOverProductionError, stock_entry.submit) + s = frappe.get_doc(make_stock_entry(pro_doc.name, "Manufacture/Repack", 7)) + s.insert() + self.assertRaises(StockOverProductionError, s.submit) test_records = frappe.get_test_records('Production Order') diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index 71488b2c43..a490f70776 100644 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -11,13 +11,13 @@ $.extend(erpnext, { else return frappe.boot.sysdefaults.currency; }, - + hide_naming_series: function() { - if(cur_frm.fields_dict.naming_series && !frappe.meta.get_docfield(cur_frm.doctype, "naming_series")) { + if(cur_frm.fields_dict.naming_series) { cur_frm.toggle_display("naming_series", cur_frm.doc.__islocal?true:false); } }, - + hide_company: function() { if(cur_frm.fields_dict.company) { var companies = Object.keys(locals[":Company"] || {}); @@ -27,28 +27,28 @@ $.extend(erpnext, { } } }, - + add_applicable_territory: function() { if(cur_frm.doc.__islocal && (cur_frm.doc.valid_for_territories || []).length===0) { var default_territory = frappe.defaults.get_user_default("territory"); if(default_territory) { - var territory = frappe.model.add_child(cur_frm.doc, "Applicable Territory", + var territory = frappe.model.add_child(cur_frm.doc, "Applicable Territory", "valid_for_territories"); territory.territory = default_territory; } - + } }, - + setup_serial_no: function(grid_row) { - if(!grid_row.fields_dict.serial_no || + if(!grid_row.fields_dict.serial_no || grid_row.fields_dict.serial_no.get_status()!=="Write") return; - + var $btn = $('') .appendTo($("
") .css({"margin-bottom": "10px", "margin-left": "15px"}) .appendTo(grid_row.fields_dict.serial_no.$wrapper)); - + $btn.on("click", function() { var d = new frappe.ui.Dialog({ title: __("Add Serial No"), @@ -68,7 +68,7 @@ $.extend(erpnext, { } ] }); - + d.get_input("add").on("click", function() { var serial_no = d.get_value("serial_no"); if(serial_no) { @@ -78,8 +78,8 @@ $.extend(erpnext, { d.hide(); return false; }); - + d.show(); }); } -}); \ No newline at end of file +}); diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index d7f58a7f6f..f06a7dd4c4 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -162,5 +162,4 @@ def _make_customer(source_name, ignore_permissions=False): raise except frappe.MandatoryError: from frappe.utils import get_url_to_form - frappe.throw(_("Before proceeding, please create Customer from Lead") + \ - (" - %s" % get_url_to_form("Lead", lead_name))) + frappe.throw(_("Please create Customer from Lead {0}").format(lead_name)) diff --git a/erpnext/setup/doctype/company/company.js b/erpnext/setup/doctype/company/company.js index d421a95328..229e230aaf 100644 --- a/erpnext/setup/doctype/company/company.js +++ b/erpnext/setup/doctype/company/company.js @@ -7,7 +7,7 @@ cur_frm.cscript.refresh = function(doc, cdt, cdn) { if(in_list(user_roles, "System Manager")) cur_frm.add_custom_button("Replace Abbreviation", cur_frm.cscript.replace_abbr) } - + if(!doc.__islocal) { cur_frm.toggle_enable("default_currency", !cur_frm.doc.__transactions_exist); } @@ -60,42 +60,40 @@ cur_frm.cscript.has_special_chars = function(t) { } cur_frm.cscript.company_name = function(doc){ - if(doc.company_name && cur_frm.cscript.has_special_chars(doc.company_name)){ - msgprint((""+__("Special Characters")+" ! @ # $ % ^ * + = - [ ] ' ; , / { } | : < > ? "+ - __("are not allowed for ")+"\n"+__("Company Name")+" "+ doc.company_name +"")) - doc.company_name = ''; - refresh_field('company_name'); - } + if(doc.company_name && cur_frm.cscript.has_special_chars(doc.company_name)){ + msgprint(__("Special Characters not allowed in Company Name")); + doc.company_name = ''; + refresh_field('company_name'); + } } cur_frm.cscript.abbr = function(doc){ - if(doc.abbr && cur_frm.cscript.has_special_chars(doc.abbr)){ - msgprint(""+__("Special Characters ")+"! @ # $ % ^ * + = - [ ] ' ; , / { } | : < > ?" + - __("are not allowed for")+ "\nAbbr " + doc.abbr +"") - doc.abbr = ''; - refresh_field('abbr'); - } + if(doc.abbr && cur_frm.cscript.has_special_chars(doc.abbr)){ + msgprint(__("Special Characters not allowed in Abbreviation")); + doc.abbr = ''; + refresh_field('abbr'); + } } -cur_frm.fields_dict.default_bank_account.get_query = function(doc) { +cur_frm.fields_dict.default_bank_account.get_query = function(doc) { return{ filters: [ ['Account', 'account_type', 'in', 'Bank, Cash'], ['Account', 'group_or_ledger', '=', 'Ledger'], ['Account', 'company', '=', doc.name] ] - } + } } cur_frm.fields_dict.default_cash_account.get_query = cur_frm.fields_dict.default_bank_account.get_query; -cur_frm.fields_dict.receivables_group.get_query = function(doc) { +cur_frm.fields_dict.receivables_group.get_query = function(doc) { return{ filters:{ 'company': doc.name, 'group_or_ledger': "Group" } - } + } } cur_frm.get_field("chart_of_accounts").get_query = function(doc) { @@ -109,33 +107,33 @@ cur_frm.get_field("chart_of_accounts").get_query = function(doc) { cur_frm.fields_dict.payables_group.get_query = cur_frm.fields_dict.receivables_group.get_query; -cur_frm.fields_dict.default_expense_account.get_query = function(doc) { +cur_frm.fields_dict.default_expense_account.get_query = function(doc) { return{ filters:{ 'company': doc.name, 'group_or_ledger': "Ledger", "report_type": "Profit and Loss" } - } + } } -cur_frm.fields_dict.default_income_account.get_query = function(doc) { +cur_frm.fields_dict.default_income_account.get_query = function(doc) { return{ filters:{ 'company': doc.name, 'group_or_ledger': "Ledger", "report_type": "Profit and Loss" } - } + } } -cur_frm.fields_dict.cost_center.get_query = function(doc) { +cur_frm.fields_dict.cost_center.get_query = function(doc) { return{ filters:{ 'company': doc.name, 'group_or_ledger': "Ledger", } - } + } } if (sys_defaults.auto_accounting_for_stock) { @@ -149,7 +147,7 @@ if (sys_defaults.auto_accounting_for_stock) { } } - cur_frm.fields_dict["expenses_included_in_valuation"].get_query = + cur_frm.fields_dict["expenses_included_in_valuation"].get_query = cur_frm.fields_dict["stock_adjustment_account"].get_query; cur_frm.fields_dict["stock_received_but_not_billed"].get_query = function(doc) { @@ -161,4 +159,4 @@ if (sys_defaults.auto_accounting_for_stock) { } } } -} \ No newline at end of file +} diff --git a/erpnext/setup/doctype/contact_control/contact_control.js b/erpnext/setup/doctype/contact_control/contact_control.js index 743bedd1dc..6b6878ffd5 100755 --- a/erpnext/setup/doctype/contact_control/contact_control.js +++ b/erpnext/setup/doctype/contact_control/contact_control.js @@ -18,7 +18,7 @@ if(cur_frm.fields_dict['territory']) { cur_frm.fields_dict['territory'].get_query = function(doc, dt, dn) { return { filters: { - 'is_group': "No" + 'is_group': "No" } } } @@ -26,10 +26,10 @@ if(cur_frm.fields_dict['territory']) { cur_frm.cscript.render_contact_row = function(wrapper, data) { // prepare data - data.fullname = (data.first_name || '') + data.fullname = (data.first_name || '') + (data.last_name ? ' ' + data.last_name : ''); data.primary = data.is_primary_contact ? ' [Primary]' : ''; - + // prepare description var description = []; $.each([ @@ -136,10 +136,7 @@ cur_frm.cscript.render_row_in_wrapper = function(wrapper, data, doctype) { cur_frm.cscript.delete_doc = function(doctype, name) { // confirm deletion - var go_ahead = confirm(repl('Delete %(doctype)s "%(name)s"', { - doctype: doctype, - name: name - })); + var go_ahead = confirm(__("Delete {0} {1}?", [doctype, name])); if (!go_ahead) return; return frappe.call({ @@ -183,4 +180,4 @@ cur_frm.cscript.render_list = function(doc, doctype, wrapper, ListView, make_new cur_frm[doctype.toLowerCase().replace(" ", "_") + "_list"] = record_list_view; } }); -} \ No newline at end of file +} diff --git a/erpnext/stock/doctype/item/item.py b/erpnext/stock/doctype/item/item.py index bdbc0dc840..b945309bdf 100644 --- a/erpnext/stock/doctype/item/item.py +++ b/erpnext/stock/doctype/item/item.py @@ -218,7 +218,7 @@ class Item(WebsiteGenerator): if merge: # Validate properties before merging if not frappe.db.exists("Item", newdn): - frappe.throw(_("Item ") + newdn +_(" does not exists")) + frappe.throw(_("Item {0} does not exist").format(newdn)) field_list = ["stock_uom", "is_stock_item", "has_serial_no", "has_batch_no"] new_properties = [cstr(d) for d in frappe.db.get_value("Item", newdn, field_list)] diff --git a/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py b/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py index f71c827ff1..c105ecbce4 100644 --- a/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py +++ b/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py @@ -27,7 +27,7 @@ class LandedCostWizard(Document): def validate_purchase_receipts(self, purchase_receipts): for pr in purchase_receipts: if frappe.db.get_value("Purchase Receipt", pr, "docstatus") != 1: - frappe.throw(_("Purchase Receipt") + ": " + pr + _(" is not submitted document")) + frappe.throw(_("Purchase Receipt {0} is not submitted").format(pr)) def add_charges_in_pr(self, purchase_receipts): """ Add additional charges in selected pr proportionately""" diff --git a/erpnext/stock/doctype/material_request/material_request.py b/erpnext/stock/doctype/material_request/material_request.py index 38ddc2f1c6..aa1ec29d21 100644 --- a/erpnext/stock/doctype/material_request/material_request.py +++ b/erpnext/stock/doctype/material_request/material_request.py @@ -168,9 +168,8 @@ def update_completed_qty(doc, method): mr_obj = frappe.get_doc("Material Request", mr_name) if mr_obj.status in ["Stopped", "Cancelled"]: - frappe.throw(_("Material Request") + ": %s, " % mr_obj.name - + _(mr_obj.meta.get_label("status")) + " = %s. " % _(mr_obj.status) - + _("Cannot continue."), exc=frappe.InvalidStatusError) + frappe.throw(_("Material Request {0} is cancelled or stopped").format(mr_obj.name), + frappe.InvalidStatusError) _update_requested_qty(doc, mr_obj, mr_items) diff --git a/erpnext/stock/doctype/serial_no/serial_no.py b/erpnext/stock/doctype/serial_no/serial_no.py index 9533e57aaf..b7dc54574d 100644 --- a/erpnext/stock/doctype/serial_no/serial_no.py +++ b/erpnext/stock/doctype/serial_no/serial_no.py @@ -67,7 +67,7 @@ class SerialNo(StockController): """ item = frappe.get_doc("Item", self.item_code) if item.has_serial_no!="Yes": - frappe.throw(_("Item must have 'Has Serial No' as 'Yes'") + ": " + self.item_code) + frappe.throw(_("Item {0} is not setup for Serial Nos. Check Item master").format(self.item_code)) self.item_group = item.item_group self.description = item.description @@ -163,9 +163,9 @@ class SerialNo(StockController): def on_trash(self): if self.status == 'Delivered': - frappe.throw(_("Delivered Serial No ") + self.name + _(" can not be deleted")) + frappe.throw(_("Delivered Serial No {0} cannot be deleted").format(self.name)) if self.warehouse: - frappe.throw(_("Cannot delete Serial No in warehouse. First remove from warehouse, then delete.") + ": " + self.name) + frappe.throw(_("Cannot delete Serial No {0} in stock. First remove from stock, then delete.").format(self.name)) def before_rename(self, old, new, merge=False): if merge: @@ -203,51 +203,49 @@ def process_serial_no(sle): def validate_serial_no(sle, item_det): if item_det.has_serial_no=="No": if sle.serial_no: - frappe.throw(_("Serial Number should be blank for Non Serialized Item" + ": " - + sle.item_code), SerialNoNotRequiredError) + frappe.throw(_("Item {0} is not setup for Serial Nos. Column must be blank").format(sle.item_code), + SerialNoNotRequiredError) else: if sle.serial_no: serial_nos = get_serial_nos(sle.serial_no) if cint(sle.actual_qty) != flt(sle.actual_qty): - frappe.throw(_("Serial No qty cannot be a fraction") + \ - (": %s (%s)" % (sle.item_code, sle.actual_qty))) + frappe.throw(_("Serial No {0} quantity {1} cannot be a fraction").format(sle.item_code, sle.actual_qty)) + if len(serial_nos) and len(serial_nos) != abs(cint(sle.actual_qty)): - frappe.throw(_("Serial Nos do not match with qty") + \ - (": %s (%s)" % (sle.item_code, sle.actual_qty)), SerialNoQtyError) + frappe.throw(_("{0} Serial Numbers required for Item {0}. Only {0} provided.").format(sle.actual_qty, sle.item_code, len(serial_nos)), + SerialNoQtyError) if len(serial_nos) != len(set(serial_nos)): - frappe.throw(_("Duplicate Serial No entered against item") + - (": %s" % sle.item_code), SerialNoDuplicateError) + frappe.throw(_("Duplicate Serial No entered for Item {0}").format(sle.item_code), SerialNoDuplicateError) for serial_no in serial_nos: if frappe.db.exists("Serial No", serial_no): sr = frappe.get_doc("Serial No", serial_no) if sr.item_code!=sle.item_code: - frappe.throw(_("Serial No does not belong to Item") + - (": %s (%s)" % (sle.item_code, serial_no)), SerialNoItemError) + frappe.throw(_("Serial No {0} does not belong to Item {1}").format(sle.item_code, + serial_no), SerialNoItemError) if sr.warehouse and sle.actual_qty > 0: - frappe.throw(_("Same Serial No") + ": " + sr.name + - _(" can not be received twice"), SerialNoDuplicateError) + frappe.throw(_("Serial No {0} has already been received").format(sr.name), + SerialNoDuplicateError) if sle.actual_qty < 0: if sr.warehouse!=sle.warehouse: - frappe.throw(_("Serial No") + ": " + serial_no + - _(" does not belong to Warehouse") + ": " + sle.warehouse, - SerialNoWarehouseError) + frappe.throw(_("Serial No {0} does not belong to Warehouse {1}").format(serial_no, + sle.warehouse), SerialNoWarehouseError) if sle.voucher_type in ("Delivery Note", "Sales Invoice") \ and sr.status != "Available": - frappe.throw(_("Serial No status must be 'Available' to Deliver") - + ": " + serial_no, SerialNoStatusError) + frappe.throw(_("Serial No {0} status must be 'Available' to Deliver").format(serial_no), + SerialNoStatusError) + elif sle.actual_qty < 0: # transfer out - frappe.throw(_("Serial No must exist to transfer out.") + \ - ": " + serial_no, SerialNoNotExistsError) + frappe.throw(_("Serial No {0} not in stock").format(serial_no), SerialNoNotExistsError) elif sle.actual_qty < 0 or not item_det.serial_no_series: - frappe.throw(_("Serial Number Required for Serialized Item" + ": " - + sle.item_code), SerialNoRequiredError) + frappe.throw(_("Serial Nos Required for Serialized Item {0}").format(sle.item_code), + SerialNoRequiredError) def update_serial_nos(sle, item_det): if sle.is_cancelled == "No" and not sle.serial_no and sle.actual_qty > 0 and item_det.serial_no_series: diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index d32f17884c..53e82f9a18 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js @@ -10,22 +10,22 @@ frappe.provide("erpnext.stock"); erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ setup: function() { var me = this; - + this.frm.fields_dict.delivery_note_no.get_query = function() { return { query: "erpnext.stock.doctype.stock_entry.stock_entry.query_sales_return_doc" }; }; - - this.frm.fields_dict.sales_invoice_no.get_query = + + this.frm.fields_dict.sales_invoice_no.get_query = this.frm.fields_dict.delivery_note_no.get_query; - + this.frm.fields_dict.purchase_receipt_no.get_query = function() { - return { + return { filters:{ 'docstatus': 1 } }; }; - + this.frm.fields_dict.mtn_details.grid.get_field('item_code').get_query = function() { - if(in_list(["Sales Return", "Purchase Return"], me.frm.doc.purpose) && + if(in_list(["Sales Return", "Purchase Return"], me.frm.doc.purpose) && me.get_doctype_docname()) { return { query: "erpnext.stock.doctype.stock_entry.stock_entry.query_return_item", @@ -40,13 +40,13 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ return erpnext.queries.item({is_stock_item: "Yes"}); } }; - + if(cint(frappe.defaults.get_default("auto_accounting_for_stock"))) { this.frm.add_fetch("company", "stock_adjustment_account", "expense_account"); - this.frm.fields_dict.mtn_details.grid.get_field('expense_account').get_query = + this.frm.fields_dict.mtn_details.grid.get_field('expense_account').get_query = function() { return { - filters: { + filters: { "company": me.frm.doc.company, "group_or_ledger": "Ledger" } @@ -66,8 +66,8 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ this.toggle_enable_bom(); this.show_stock_ledger(); this.show_general_ledger(); - - if(this.frm.doc.docstatus === 1 && + + if(this.frm.doc.docstatus === 1 && frappe.boot.user.can_create.indexOf("Journal Voucher")!==-1) { if(this.frm.doc.purpose === "Sales Return") { this.frm.add_custom_button(__("Make Credit Note"), function() { me.make_return_jv(); }); @@ -77,7 +77,7 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ this.add_excise_button(); } } - + }, on_submit: function() { @@ -90,22 +90,22 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ set_default_account: function() { var me = this; - + if(cint(frappe.defaults.get_default("auto_accounting_for_stock"))) { var account_for = "stock_adjustment_account"; - if (this.frm.doc.purpose == "Purchase Return") + if (this.frm.doc.purpose == "Purchase Return") account_for = "stock_received_but_not_billed"; - + return this.frm.call({ method: "erpnext.accounts.utils.get_company_default", args: { - "fieldname": account_for, + "fieldname": account_for, "company": this.frm.doc.company }, callback: function(r) { if (!r.exc) { - $.each(doc.mtn_details || [], function(i, d) { + $.each(me.frm.doc.mtn_details || [], function(i, d) { if(!d.expense_account) d.expense_account = r.message; }); } @@ -116,9 +116,9 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ clean_up: function() { // Clear Production Order record from locals, because it is updated via Stock Entry - if(this.frm.doc.production_order && + if(this.frm.doc.production_order && this.frm.doc.purpose == "Manufacture/Repack") { - frappe.model.remove_from_locals("Production Order", + frappe.model.remove_from_locals("Production Order", this.frm.doc.production_order); } }, @@ -145,7 +145,7 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ production_order: function() { var me = this; this.toggle_enable_bom(); - + return this.frm.call({ method: "get_production_order_details", args: {production_order: this.frm.doc.production_order}, @@ -167,26 +167,26 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ if(this.frm.doc.delivery_note_no && this.frm.doc.sales_invoice_no) { // both specified msgprint(__("You can not enter both Delivery Note No and Sales Invoice No. Please enter any one.")); - + } else if(!(this.frm.doc.delivery_note_no || this.frm.doc.sales_invoice_no)) { // none specified msgprint(__("Please enter Delivery Note No or Sales Invoice No to proceed")); - + } else if(this.frm.doc.delivery_note_no) { return {doctype: "Delivery Note", docname: this.frm.doc.delivery_note_no}; - + } else if(this.frm.doc.sales_invoice_no) { return {doctype: "Sales Invoice", docname: this.frm.doc.sales_invoice_no}; - + } } else if(this.frm.doc.purpose === "Purchase Return") { if(this.frm.doc.purchase_receipt_no) { return {doctype: "Purchase Receipt", docname: this.frm.doc.purchase_receipt_no}; - + } else { // not specified msgprint(__("Please enter Purchase Receipt No to proceed")); - + } } }, @@ -226,9 +226,9 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ mtn_details_add: function(doc, cdt, cdn) { var row = frappe.get_doc(cdt, cdn); - this.frm.script_manager.copy_from_first_row("mtn_details", row, + this.frm.script_manager.copy_from_first_row("mtn_details", row, ["expense_account", "cost_center"]); - + if(!row.s_warehouse) row.s_warehouse = this.frm.doc.from_warehouse; if(!row.t_warehouse) row.t_warehouse = this.frm.doc.to_warehouse; }, @@ -236,49 +236,49 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ mtn_details_on_form_rendered: function(doc, grid_row) { erpnext.setup_serial_no(grid_row) }, - + customer: function() { return this.frm.call({ method: "erpnext.accounts.party.get_party_details", args: { party: this.frm.doc.customer, party_type:"Customer" } }); }, - + supplier: function() { return this.frm.call({ method: "erpnext.accounts.party.get_party_details", args: { party: this.frm.doc.supplier, party_type:"Supplier" } }); }, - + delivery_note_no: function() { this.get_party_details({ ref_dt: "Delivery Note", ref_dn: this.frm.doc.delivery_note_no }) }, - + sales_invoice_no: function() { this.get_party_details({ ref_dt: "Sales Invoice", ref_dn: this.frm.doc.sales_invoice_no }) }, - + purchase_receipt_no: function() { this.get_party_details({ ref_dt: "Purchase Receipt", ref_dn: this.frm.doc.purchase_receipt_no }) }, - + get_party_details: function(args) { return this.frm.call({ method: "erpnext.stock.doctype.stock_entry.stock_entry.get_party_details", args: args, }) } - + }); cur_frm.script_manager.make(erpnext.stock.StockEntry); @@ -286,23 +286,23 @@ cur_frm.script_manager.make(erpnext.stock.StockEntry); cur_frm.cscript.toggle_related_fields = function(doc) { disable_from_warehouse = inList(["Material Receipt", "Sales Return"], doc.purpose); disable_to_warehouse = inList(["Material Issue", "Purchase Return"], doc.purpose); - + cur_frm.toggle_enable("from_warehouse", !disable_from_warehouse); cur_frm.toggle_enable("to_warehouse", !disable_to_warehouse); - + cur_frm.fields_dict["mtn_details"].grid.set_column_disp("s_warehouse", !disable_from_warehouse); cur_frm.fields_dict["mtn_details"].grid.set_column_disp("t_warehouse", !disable_to_warehouse); - + if(doc.purpose == 'Purchase Return') { - doc.customer = doc.customer_name = doc.customer_address = + doc.customer = doc.customer_name = doc.customer_address = doc.delivery_note_no = doc.sales_invoice_no = null; doc.bom_no = doc.production_order = doc.fg_completed_qty = null; } else if(doc.purpose == 'Sales Return') { doc.supplier=doc.supplier_name = doc.supplier_address = doc.purchase_receipt_no=null; doc.bom_no = doc.production_order = doc.fg_completed_qty = null; } else { - doc.customer = doc.customer_name = doc.customer_address = - doc.delivery_note_no = doc.sales_invoice_no = doc.supplier = + doc.customer = doc.customer_name = doc.customer_address = + doc.delivery_note_no = doc.sales_invoice_no = doc.supplier = doc.supplier_name = doc.supplier_address = doc.purchase_receipt_no = null; } } @@ -331,7 +331,7 @@ cur_frm.fields_dict['mtn_details'].grid.get_field('batch_no').get_query = functi 's_warehouse': d.s_warehouse, 'posting_date': doc.posting_date } - } + } } else { msgprint(__("Please enter Item Code to get batch no")); } @@ -350,10 +350,10 @@ cur_frm.cscript.item_code = function(doc, cdt, cdn) { 'cost_center' : d.cost_center, 'company' : cur_frm.doc.company }; - return get_server_fields('get_item_details', {arg: JSON.stringify(args)}, + return get_server_fields('get_item_details', {arg: JSON.stringify(args)}, 'mtn_details', doc, cdt, cdn, 1); } - + } cur_frm.cscript.s_warehouse = function(doc, cdt, cdn) { @@ -366,7 +366,7 @@ cur_frm.cscript.s_warehouse = function(doc, cdt, cdn) { 'bom_no' : d.bom_no, 'qty' : d.s_warehouse ? -1* d.qty : d.qty } - return get_server_fields('get_warehouse_details', JSON.stringify(args), + return get_server_fields('get_warehouse_details', JSON.stringify(args), 'mtn_details', doc, cdt, cdn, 1); } @@ -376,7 +376,7 @@ cur_frm.cscript.uom = function(doc, cdt, cdn) { var d = locals[cdt][cdn]; if(d.uom && d.item_code){ var arg = {'item_code':d.item_code, 'uom':d.uom, 'qty':d.qty} - return get_server_fields('get_uom_details', JSON.stringify(arg), + return get_server_fields('get_uom_details', JSON.stringify(arg), 'mtn_details', doc, cdt, cdn, 1); } } diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py index 74c5a3fbc5..8026a3e577 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry.py @@ -72,7 +72,15 @@ class StockEntry(StockController): stock_items = self.get_stock_items() for item in self.get("mtn_details"): if item.item_code not in stock_items: - frappe.throw(_("""Only Stock Items are allowed for Stock Entry""")) + frappe.throw(_("{0} is not a stock Item").format(item.item_code)) + if not item.stock_uom: + item.stock_uom = frappe.db.get_value("Item", item.item_code, "stock_uom") + if not item.uom: + item.uom = item.stock_uom + if not item.conversion_factor: + item.conversion_factor = 1 + if not item.transfer_qty: + item.transfer_qty = item.qty * item.conversion_factor def validate_warehouse(self, pro_obj): """perform various (sometimes conditional) validations on warehouse""" @@ -224,7 +232,7 @@ class StockEntry(StockController): """validation: finished good quantity should be same as manufacturing quantity""" for d in self.get('mtn_details'): if d.bom_no and flt(d.transfer_qty) != flt(self.fg_completed_qty): - frappe.throw(_("Quantity in row {0} must be same as manufactured quantity").format(d.idx)) + frappe.throw(_("Quantity in row {0} ({1}) must be same as manufactured quantity {2}").format(d.idx, d.transfer_qty, self.fg_completed_qty)) def validate_return_reference_doc(self): """validate item with reference doc""" 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 e913172b23..6ab754bd36 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py @@ -47,7 +47,7 @@ class StockLedgerEntry(DocListController): mandatory = ['warehouse','posting_date','voucher_type','voucher_no','actual_qty','company'] for k in mandatory: if not self.get(k): - frappe.throw(_("{0} is required").format(k)) + frappe.throw(_("{0} is required").format(self.meta.get_label(k))) def validate_item(self): item_det = frappe.db.sql("""select name, has_batch_no, docstatus, diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index 07778a489b..62842f1f2c 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -138,9 +138,7 @@ class StockReconciliation(StockController): # check valuation rate mandatory if row.qty != "" and not row.valuation_rate and \ flt(previous_sle.get("qty_after_transaction")) <= 0: - frappe.throw(_("As existing qty for item: ") + row.item_code + - _(" at warehouse: ") + row.warehouse + - _(" is less than equals to zero in the system, valuation rate is mandatory for this item")) + frappe.throw(_("Valuation Rate required for Item {0}").format(row.item_code)) change_in_qty = row.qty != "" and \ (flt(row.qty) - flt(previous_sle.get("qty_after_transaction"))) diff --git a/erpnext/stock/doctype/warehouse/warehouse.py b/erpnext/stock/doctype/warehouse/warehouse.py index dcb00f38e5..8cb920b3a3 100644 --- a/erpnext/stock/doctype/warehouse/warehouse.py +++ b/erpnext/stock/doctype/warehouse/warehouse.py @@ -94,7 +94,7 @@ class Warehouse(Document): if merge: if not frappe.db.exists("Warehouse", new_warehouse): - frappe.throw(_("Warehouse ") + new_warehouse +_(" does not exists")) + frappe.throw(_("Warehouse {0} does not exist").format(new_warehouse)) if self.company != frappe.db.get_value("Warehouse", new_warehouse, "company"): frappe.throw(_("Both Warehouse must belong to same Company")) diff --git a/erpnext/stock/get_item_details.py b/erpnext/stock/get_item_details.py index 85d7e12e50..ef233cef36 100644 --- a/erpnext/stock/get_item_details.py +++ b/erpnext/stock/get_item_details.py @@ -79,12 +79,12 @@ def get_item_details(args): def get_item_code(barcode=None, serial_no=None): if barcode: item_code = frappe.db.get_value("Item", {"barcode": barcode}) + if not item_code: + frappe.throw(_("No Item with Barcode {0}").format(barcode)) elif serial_no: item_code = frappe.db.get_value("Serial No", serial_no, "item_code") - - if not item_code: - throw(_("No Item found with ") + _("Barcode") if barcode else _("Serial No") + - ": %s" % (barcode or serial_no)) + if not item_code: + frappe.throw(_("No Item with Serial No {0}").format(serial_no)) return item_code @@ -99,22 +99,18 @@ def validate_item_details(args, item): # validate if sales item or service item if args.get("order_type") == "Maintenance": if item.is_service_item != "Yes": - throw(_("Item") + (" %s: " % item.name) + - _("is not a service item.") + - _("Please select a service item or change the order type to Sales.")) + throw(_("Item {0} must be a Service Item.").format(item.name)) elif item.is_sales_item != "Yes": - throw(_("Item") + (" %s: " % item.name) + _("is not a sales item")) + throw(_("Item {0} must be a Sales Item").format(item.name)) elif args.transaction_type == "buying": # validate if purchase item or subcontracted item if item.is_purchase_item != "Yes": - throw(_("Item") + (" %s: " % item.name) + _("is not a purchase item")) + throw(_("Item {0} must be a Purchase Item").format(item.name)) if args.get("is_subcontracted") == "Yes" and item.is_sub_contracted_item != "Yes": - throw(_("Item") + (" %s: " % item.name) + - _("not a sub-contracted item.") + - _("Please select a sub-contracted item or do not sub-contract the transaction.")) + throw(_("Item {0} must be a Sub-contracted Item").format(item.name)) def get_basic_details(args, item_doc): item = item_doc @@ -180,7 +176,7 @@ def validate_price_list(args): if args.get("price_list"): if not frappe.db.get_value("Price List", {"name": args.price_list, args.transaction_type: 1, "enabled": 1}): - throw(_("Price List is either disabled or for not ") + _(args.transaction_type)) + throw(_("Price List {0} is disabled").format(args.price_list)) else: throw(_("Price List not selected")) diff --git a/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py b/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py index a06ab81b8e..74d0e2e2a2 100644 --- a/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +++ b/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py @@ -176,14 +176,14 @@ class MaintenanceSchedule(TransactionBase): if not d.item_code: throw(_("Please select item code")) elif not d.start_date or not d.end_date: - throw(_("Please select Start Date and End Date for item") + " " + d.item_code) + throw(_("Please select Start Date and End Date for Item {0}".format(d.item_code))) elif not d.no_of_visits: throw(_("Please mention no of visits required")) elif not d.sales_person: throw(_("Please select Incharge Person's name")) if getdate(d.start_date) >= getdate(d.end_date): - throw(_("Start date should be less than end date for item") + " " + d.item_code) + throw(_("Start date should be less than end date for Item {0}").format(d.item_code)) def validate_sales_order(self): for d in self.get('item_maintenance_detail'): @@ -238,8 +238,7 @@ class MaintenanceSchedule(TransactionBase): else: for x in item_lst1: if x not in item_lst2: - throw(_("Maintenance Schedule is not generated for item ") + x + - _(". Please click on 'Generate Schedule'")) + throw(_("Please click on 'Generate Schedule'")) def check_serial_no_added(self): serial_present =[] diff --git a/erpnext/translations/hi.csv b/erpnext/translations/hi.csv index 4a398fd311..0a5772a8f8 100644 --- a/erpnext/translations/hi.csv +++ b/erpnext/translations/hi.csv @@ -1,55 +1,8 @@ (Half Day),(आधे दिन) - .You can not assign / modify / remove Master Name, - Quantity should be greater than 0., - after this transaction., - against cost center , - against sales order,बिक्री के आदेश के खिलाफ - against same operation,एक ही आपरेशन के खिलाफ - already marked,पहले से ही चिह्नित - and fiscal year : , and year: ,और वर्ष: - as it is stock Item or packing item,यह स्टॉक आइटम या पैकिंग आइटम के रूप में है - at warehouse: ,गोदाम में: - budget , - can not be created/modified against stopped Sales Order , - can not be deleted, - can not be made.,नहीं बनाया जा सकता. - can not be received twice, - can only be debited/credited through Stock transactions, - created, - does not belong to , - does not belong to Warehouse, - does not belong to the company,कंपनी का नहीं है - does not exists, - for account , - has been freezed. ,freezed किया गया है. - is a frozen account. Either make the account active or assign role in Accounts Settings who can create / modify entries against this account, -" is a frozen account. To create / edit transactions against this account, you need role", -" is less than equals to zero in the system, valuation rate is mandatory for this item", - is mandatory,अनिवार्य है - is mandatory for GL Entry,जीएल एंट्री करने के लिए अनिवार्य है - is not a ledger,एक खाता नहीं है - is not active,सक्रिय नहीं है - is not submitted document, -" is now the default Fiscal Year. \ - Please refresh your browser for the change to take effect.", - not active or does not exists in the system,सक्रिय नहीं या सिस्टम में मौजूद नहीं है - or the BOM is cancelled or inactive,या BOM रद्द कर दिया है या निष्क्रिय - should be same as that in ,में उस के रूप में ही किया जाना चाहिए - was on leave on ,था पर छोड़ पर - will be ,हो जाएगा - will be created, - will be over-billed against mentioned ,उल्लेख के खिलाफ ज्यादा बिल भेजा जाएगा - will become ,हो जाएगा - will exceed by , + by Role ,रोल से + is not set,सेट नहीं है """ does not exists",""" मौजूद नहीं है" -# ###.##, -"#,###", -"#,###.##", -"#,###.###", -"#,##,###.##", -#.###, -"#.###,##", % Delivered,% वितरित % Amount Billed,% बिल की राशि % Billed,% बिल @@ -64,94 +17,82 @@ % of materials ordered against this Material Request,सामग्री का% इस सामग्री अनुरोध के खिलाफ आदेश दिया % of materials received against this Purchase Order,इस खरीद के आदेश के खिलाफ प्राप्त सामग्री की% %(conversion_rate_label)s is mandatory. Maybe Currency Exchange record is not created for %(from_currency)s to %(to_currency)s,% ( conversion_rate_label ) अनिवार्य है . हो सकता है कि विनिमय दर रिकॉर्ड % के लिए नहीं बनाई गई है ( from_currency ) एस % करने के लिए ( to_currency ) है -' in Company: ,'कंपनी में: +'Actual Start Date' can not be greater than 'Actual End Date',' वास्तविक प्रारंभ दिनांक ' वास्तविक अंत तिथि ' से बड़ा नहीं हो सकता +'Based On' and 'Group By' can not be same,'पर आधारित ' और ' समूह द्वारा ' ही नहीं किया जा सकता है +'Days Since Last Order' must be greater than or equal to zero,' पिछले आदेश के बाद दिन ' से अधिक है या शून्य के बराबर होना चाहिए +'Entries' cannot be empty,' प्रविष्टियां ' खाली नहीं हो सकता +'Expected Start Date' can not be greater than 'Expected End Date',' उम्मीद प्रारंभ दिनांक ' 'की आशा की समाप्ति तिथि' से बड़ा नहीं हो सकता +'From Date' is required,'तिथि से ' आवश्यक है +'From Date' must be after 'To Date','तिथि ' से 'तिथि ' करने के बाद होना चाहिए +'Has Serial No' can not be 'Yes' for non-stock item,' धारावाहिक नहीं है' गैर स्टॉक आइटम के लिए ' हां ' नहीं हो सकता +'Notification Email Addresses' not specified for recurring invoice,चालान आवर्ती के लिए निर्दिष्ट नहीं 'सूचना ईमेल पते' +'Profit and Loss' type Account {0} used be set for Opening Entry,' लाभ और हानि ' प्रकार खाते {0} एंट्री खुलने के लिए सेट किया जा इस्तेमाल किया +'Profit and Loss' type account {0} not allowed in Opening Entry,' लाभ और हानि ' प्रकार खाते {0} एंट्री खुलने में अनुमति नहीं 'To Case No.' cannot be less than 'From Case No.','प्रकरण नहीं करने के लिए' 'केस नंबर से' से कम नहीं हो सकता -"(Paid amount + Write Off Amount) can not be \ - greater than Grand Total", -(Total) Net Weight value. Make sure that Net Weight of each item is,( कुल ) नेट वजन मूल्य . प्रत्येक आइटम का शुद्ध वजन है कि सुनिश्चित करें +'To Date' is required,तिथि करने के लिए आवश्यक है +'Update Stock' for Sales Invoice {0} must be set,बिक्री चालान के लिए 'अपडेट शेयर ' {0} सेट किया जाना चाहिए * Will be calculated in the transaction.,* लेनदेन में गणना की जाएगी. -"**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business. - -To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", -**Currency** Master,** मुद्रा ** मास्टर -**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** वित्त वर्ष ** एक वित्तीय वर्ष का प्रतिनिधित्व करता है. सभी लेखा प्रविष्टियों और अन्य प्रमुख लेनदेन ** वित्त वर्ष के खिलाफ ट्रैक कर रहे हैं. -". Outstanding cannot be less than zero. \ - Please match exact outstanding.", -. Please set status of the employee as 'Left',. 'वाम' के रूप में कर्मचारी की स्थिति सेट करें -. You can not mark his attendance as 'Present',. आप 'वर्तमान' के रूप में अपनी उपस्थिति को चिह्नित नहीं कर सकते -01,01 -02,02 -03,03 -04,04 -05,05 -06,06 -07,07 -08,08 -09,09 "1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent", 1. To maintain the customer wise item code and to make them searchable based on their code use this option,1. इस विकल्प का उपयोग ग्राहक बुद्धिमान आइटम कोड को बनाए रखने और अपने कोड के आधार पर बनाने के लिए उन्हें खोजा -10,10 -11,11 -12,12 -2,2 -3,3 -4,4 -5,5 -6,6 -: Duplicate row from same ,: उसी से पंक्ति डुप्लिकेट -: It is linked to other active BOM(s),: यह अन्य सक्रिय बीओएम (ओं) से जुड़ा हुआ है -: Mandatory for a Recurring Invoice.,: एक आवर्ती चालान के लिए अनिवार्य है. +2 days ago,2 दिन पहले "Add / Edit"," जोड़ें / संपादित करें " "Add / Edit"," जोड़ें / संपादित करें " "Add / Edit"," जोड़ें / संपादित करें " -"[?]"," [? ] " +A Customer Group exists with same name please change the Customer name or rename the Customer Group,एक ग्राहक समूह में एक ही नाम के साथ मौजूद ग्राहक का नाम बदलने के लिए या ग्राहक समूह का नाम बदलने के लिए कृपया A Customer exists with same name,एक ग्राहक एक ही नाम के साथ मौजूद है A Lead with this email id should exist,इस ईमेल आईडी के साथ एक लीड मौजूद होना चाहिए -"A Product or a Service that is bought, sold or kept in stock.","एक उत्पाद या सेवा है कि खरीदा है, बेचा या स्टॉक में रखा." A Supplier exists with same name,एक सप्लायर के एक ही नाम के साथ मौजूद है -A condition for a Shipping Rule,एक नौवहन नियम के लिए एक शर्त -A logical Warehouse against which stock entries are made.,एक तार्किक वेयरहाउस के खिलाफ जो शेयर प्रविष्टियों बना रहे हैं. A symbol for this currency. For e.g. $,इस मुद्रा के लिए एक प्रतीक है. उदाहरण के लिए $ -A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,एक तीसरे पक्ष के वितरक / डीलर / कमीशन एजेंट / सहबद्ध / पुनर्विक्रेता जो एक आयोग के लिए कंपनियों के उत्पादों को बेचता है. -A+,A + -A-,A- -AB+,AB + -AB-,अटल बिहारी AMC Expiry Date,एएमसी समाप्ति तिथि -AMC expiry date and maintenance status mismatched,एएमसी समाप्ति की तारीख और रखरखाव की स्थिति बेमेल -ATT,ATT Abbr,Abbr -About ERPNext,ERPNext बारे में +Abbreviation cannot have more than 5 characters,संक्षिप्त 5 से अधिक वर्ण नहीं हो सकता +About,के बारे में Above Value,मूल्य से ऊपर Absent,अनुपस्थित Acceptance Criteria,स्वीकृति मानदंड Accepted,स्वीकार किया +Accepted + Rejected Qty must be equal to Received quantity for Item {0},स्वीकृत + अस्वीकृत मात्रा मद के लिए प्राप्त मात्रा के बराबर होना चाहिए {0} Accepted Quantity,स्वीकार किए जाते हैं मात्रा Accepted Warehouse,स्वीकार किए जाते हैं वेअरहाउस Account,खाता -Account , Account Balance,खाता शेष +Account Created: {0},खाता बनाया : {0} Account Details,खाता विवरण Account Head,लेखाशीर्ष Account Name,खाते का नाम Account Type,खाता प्रकार -Account expires on,खाता को समाप्त हो Account for the warehouse (Perpetual Inventory) will be created under this Account.,गोदाम ( सदा सूची ) के लिए खाते में इस खाते के तहत बनाया जाएगा . -Account for this ,इस के लिए खाता +Account head {0} created,खाता सिर {0} बनाया +Account must be a balance sheet account,खाता एक बैलेंस शीट खाता होना चाहिए +Account with child nodes cannot be converted to ledger,बच्चे नोड्स के साथ खाता लेजर को परिवर्तित नहीं किया जा सकता है +Account with existing transaction can not be converted to group.,मौजूदा लेन - देन के साथ खाता समूह को नहीं बदला जा सकता . +Account with existing transaction can not be deleted,मौजूदा लेन - देन के साथ खाता हटाया नहीं जा सकता +Account with existing transaction cannot be converted to ledger,मौजूदा लेन - देन के साथ खाता लेजर को परिवर्तित नहीं किया जा सकता है +Account {0} already exists,खाते {0} पहले से मौजूद है +Account {0} can only be updated via Stock Transactions,खाते {0} केवल शेयर लेनदेन के माध्यम से अद्यतन किया जा सकता है +Account {0} cannot be a Group,खाते {0} एक समूह नहीं हो सकता +Account {0} does not belong to Company {1},खाते {0} कंपनी से संबंधित नहीं है {1} +Account {0} does not exist,खाते {0} मौजूद नहीं है +Account {0} has been entered more than once for fiscal year {1},खाते {0} अधिक वित्तीय वर्ष के लिए एक बार से अधिक दर्ज किया गया है {1} +Account {0} is frozen,खाते {0} जमे हुए है +Account {0} is inactive,खाते {0} निष्क्रिय है +Account {0} must be of type 'Fixed Asset' as Item {1} is an Asset Item,आइटम {1} एक एसेट आइटम के रूप में खाते {0} प्रकार की ' फिक्स्ड एसेट ' होना चाहिए +Account {0} must be sames as Credit To Account in Purchase Invoice in row {0},क्रेडिट पंक्ति में खरीद चालान में खाते में के रूप में खाते {0} sames होना चाहिए {0} +Account {0} must be sames as Debit To Account in Sales Invoice in row {0},डेबिट पंक्ति में बिक्री चालान में खाते में के रूप में खाते {0} sames होना चाहिए {0} Accounting,लेखांकन -Accounting Entries are not allowed against groups.,लेखांकन प्रविष्टियों समूहों के खिलाफ अनुमति नहीं है. "Accounting Entries can be made against leaf nodes, called","लेखांकन प्रविष्टियों बुलाया , पत्ती नोड्स के खिलाफ किया जा सकता है" -Accounting Year.,लेखा वर्ष. "Accounting entry frozen up to this date, nobody can do / modify entry except role specified below.","इस तारीख तक कर जम लेखा प्रविष्टि, कोई नहीं / नीचे निर्दिष्ट भूमिका छोड़कर प्रविष्टि को संशोधित कर सकते हैं." Accounting journal entries.,लेखा पत्रिका प्रविष्टियों. Accounts,लेखा +Accounts Browser,लेखा ब्राउज़र Accounts Frozen Upto,लेखा तक जमे हुए Accounts Payable,लेखा देय Accounts Receivable,लेखा प्राप्य Accounts Settings,लेखा सेटिंग्स -Action,कार्रवाई +Actions,क्रियाएँ Active,सक्रिय +Active Salary Sructure already exists for Employee {0},सक्रिय वेतन Sructure पहले से ही कर्मचारी के लिए मौजूद है {0} Active: Will extract emails from ,सक्रिय: से ईमेल निकालने विल Activity,सक्रियता Activity Log,गतिविधि लॉग @@ -172,15 +113,24 @@ Actual Quantity,वास्तविक मात्रा Actual Start Date,वास्तविक प्रारंभ दिनांक Add,जोड़ना Add / Edit Taxes and Charges,कर और प्रभार जोड़ें / संपादित करें +Add Attachments,अनुलग्नकों को जोड़ +Add Bookmark,बुकमार्क जोड़ें Add Child,बाल जोड़ें +Add Column,कॉलम जोड़ें +Add Message,संदेश जोड़ें +Add Reply,प्रत्युत्तर जोड़ें Add Serial No,धारावाहिक नहीं जोड़ें Add Taxes,करों जोड़ें Add Taxes and Charges,करों और शुल्कों में जोड़ें +Add This To User's Restrictions,उपयोगकर्ता के प्रतिबंध के लिए इस जोड़ें +Add attachment,लगाव जोड़ें +Add new row,नई पंक्ति जोड़ें Add or Deduct,जोड़ें या घटा Add rows to set annual budgets on Accounts.,पंक्तियाँ जोड़ें लेखा पर वार्षिक बजट निर्धारित. +Add to To Do,जोड़ें करने के लिए क्या +Add to To Do List of,को जोड़ने के लिए की सूची Add to calendar on this date,इस तिथि पर कैलेंडर में जोड़ें Add/Remove Recipients,प्राप्तकर्ता जोड़ें / निकालें -Additional Info,अतिरिक्त जानकारी Address,पता Address & Contact,पता और संपर्क Address & Contacts,पता और संपर्क @@ -190,7 +140,9 @@ Address HTML,HTML पता करने के लिए Address Line 1,पता पंक्ति 1 Address Line 2,पता पंक्ति 2 Address Title,पता शीर्षक +Address Title is mandatory.,पता शीर्षक अनिवार्य है . Address Type,पता प्रकार +Address master.,पता गुरु . Advance Amount,अग्रिम राशि Advance amount,अग्रिम राशि Advances,अग्रिम @@ -198,6 +150,7 @@ Advertisement,विज्ञापन After Sale Installations,बिक्री के प्रतिष्ठान के बाद Against,के खिलाफ Against Account,खाते के खिलाफ +Against Bill {0} dated {1},विधेयक {0} दिनांक खिलाफ {1} Against Docname,Docname खिलाफ Against Doctype,Doctype के खिलाफ Against Document Detail No,दस्तावेज़ विस्तार नहीं के खिलाफ @@ -211,15 +164,11 @@ Against Sales Order,बिक्री के आदेश के खिला Against Voucher,वाउचर के खिलाफ Against Voucher Type,वाउचर प्रकार के खिलाफ Ageing Based On,के आधार पर बूढ़े +Ageing Date is mandatory for opening entry,तिथि करे प्रवेश खोलने के लिए अनिवार्य है +Ageing date is mandatory for opening entry,तारीख करे प्रवेश खोलने के लिए अनिवार्य है Agent,एजेंट -"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**. - -The package **Item** will have ""Is Stock Item"" as ""No"" and ""Is Sales Item"" as ""Yes"". - -For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item. - -Note: BOM = Bill of Materials", Aging Date,तिथि एजिंग +Aging Date is mandatory for opening entry,तिथि एजिंग प्रविष्टि खोलने के लिए अनिवार्य है All Addresses.,सभी पते. All Contact,सभी संपर्क All Contacts.,सभी संपर्क. @@ -230,21 +179,24 @@ All Lead (Open),सभी लीड (ओपन) All Products or Services.,सभी उत्पादों या सेवाओं. All Sales Partner Contact,सभी बिक्री साथी संपर्क All Sales Person,सभी बिक्री व्यक्ति -All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,सभी बिक्री लेनदेन कई ** बिक्री व्यक्तियों ** इतनी है कि आप सेट और लक्ष्यों की निगरानी कर सकते हैं के खिलाफ चिह्नित किया जा सकता है. All Supplier Contact,सभी आपूर्तिकर्ता संपर्क All Supplier Types,सभी आपूर्तिकर्ता के प्रकार "All export related fields like currency, conversion rate, export total, export grand total etc are available in
Delivery Note, POS, Quotation, Sales Invoice, Sales Order etc.", "All import related fields like currency, conversion rate, import total, import grand total etc are available in
Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.", +All items have already been transferred for this Production Order.,सभी आइटम पहले से ही इस उत्पादन आदेश के लिए स्थानांतरित कर दिया गया है . +All these items have already been invoiced,इन सभी मदों पहले से चालान कर दिया गया है Allocate,आवंटित +Allocate leaves for a period.,एक अवधि के लिए पत्तियों का आवंटन . Allocate leaves for the year.,वर्ष के लिए पत्तियों आवंटित. Allocated Amount,आवंटित राशि Allocated Budget,आवंटित बजट Allocated amount,आवंटित राशि Allow Bill of Materials,सामग्री के बिल की अनुमति दें +Allow Bill of Materials should be 'Yes'. Because one or many active BOMs present for this item,माल का बिल ' हां ' होना चाहिए की अनुमति दें . क्योंकि एक या इस मद के लिए वर्तमान में कई सक्रिय BOMs +Allow Children,बच्चे की अनुमति दें Allow Dropbox Access,ड्रॉपबॉक्स पहुँच की अनुमति -Allow For Users,उपयोगकर्ताओं के लिए अनुमति Allow Google Drive Access,गूगल ड्राइव पहुँच की अनुमति Allow Negative Balance,ऋणात्मक शेष की अनुमति दें Allow Negative Stock,नकारात्मक स्टॉक की अनुमति दें @@ -254,18 +206,26 @@ Allow Users,उपयोगकर्ताओं को अनुमति द Allow the following users to approve Leave Applications for block days.,निम्नलिखित उपयोगकर्ता ब्लॉक दिनों के लिए छोड़ एप्लीकेशन को स्वीकृत करने की अनुमति दें. Allow user to edit Price List Rate in transactions,उपयोगकर्ता लेनदेन में मूल्य सूची दर को संपादित करने की अनुमति दें Allowance Percent,भत्ता प्रतिशत +Allowance for over-delivery / over-billing crossed for Item {0},भत्ता से अधिक प्रसव / अधिक बिलिंग के लिए आइटम के लिए पार कर गया {0} Allowed Role to Edit Entries Before Frozen Date,फ्रोजन तारीख से पहले संपादित प्रविष्टियां करने की अनुमति दी रोल -Always use above Login Id as sender,हमेशा प्रेषक के रूप में लॉगिन आईडी से ऊपर का उपयोग +"Allowing DocType, DocType. Be careful!","अनुमति दे टैग , टैग . सावधान!" +Alternative download link,वैकल्पिक डाउनलोड लिंक +Amend,संशोधन करना Amended From,से संशोधित Amount,राशि Amount (Company Currency),राशि (कंपनी मुद्रा) Amount <=,राशि <= Amount >=,राशि> = Amount to Bill,बिल राशि -Analytics,विश्लेषिकी -Another Period Closing Entry,अन्य समयावधि अन्तिम प्रविष्टि -Another Salary Structure '%s' is active for employee '%s'. Please make its status 'Inactive' to proceed.,एक और वेतन ढांचे में '% s ' कर्मचारी '% s' के लिए सक्रिय है . आगे बढ़ने के लिए अपनी स्थिति को 'निष्क्रिय' कर लें . +An Customer exists with same name,एक ग्राहक एक ही नाम के साथ मौजूद है +"An Item Group exists with same name, please change the item name or rename the item group","एक आइटम समूह में एक ही नाम के साथ मौजूद है , वस्तु का नाम बदलने के लिए या आइटम समूह का नाम बदलने के लिए कृपया" +"An item exists with same name ({0}), please change the item group name or rename the item","एक आइटम ( {0}) , मद समूह का नाम बदलने के लिए या आइटम का नाम बदलने के लिए कृपया एक ही नाम के साथ मौजूद है" +Annual,वार्षिक +Another Period Closing Entry {0} has been made after {1},अन्य समयावधि अंतिम लेखा {0} के बाद किया गया है {1} +Another Salary Structure {0} is active for employee {0}. Please make its status 'Inactive' to proceed.,एक और वेतन ढांचे {0} कर्मचारी के लिए सक्रिय है {0} . आगे बढ़ने के लिए अपनी स्थिति को 'निष्क्रिय' कर लें . "Any other comments, noteworthy effort that should go in the records.","किसी भी अन्य टिप्पणी, उल्लेखनीय प्रयास है कि रिकॉर्ड में जाना चाहिए." +Applicability,प्रयोज्यता +Applicable For,के लिए लागू Applicable Holiday List,लागू अवकाश सूची Applicable Territory,लागू टेरिटरी Applicable To (Designation),के लिए लागू (पद) @@ -273,31 +233,40 @@ Applicable To (Employee),के लिए लागू (कर्मचारी Applicable To (Role),के लिए लागू (रोल) Applicable To (User),के लिए लागू (उपयोगकर्ता) Applicant Name,आवेदक के नाम -Applicant for a Job,एक नौकरी के लिए आवेदक Applicant for a Job.,एक नौकरी के लिए आवेदक. Applications for leave.,छुट्टी के लिए आवेदन. Applies to Company,कंपनी के लिए लागू होता है -Apply / Approve Leaves,पत्तियां लागू / स्वीकृत +Apply On,पर लागू होते हैं Appraisal,मूल्यांकन Appraisal Goal,मूल्यांकन लक्ष्य Appraisal Goals,मूल्यांकन लक्ष्य Appraisal Template,मूल्यांकन टेम्पलेट Appraisal Template Goal,मूल्यांकन टेम्पलेट लक्ष्य Appraisal Template Title,मूल्यांकन टेम्पलेट शीर्षक +Appraisal {0} created for Employee {1} in the given date range,मूल्यांकन {0} {1} निश्चित तिथि सीमा में कर्मचारी के लिए बनाया Approval Status,स्वीकृति स्थिति +Approval Status must be 'Approved' or 'Rejected',स्वीकृति स्थिति 'स्वीकृत' या ' अस्वीकृत ' होना चाहिए Approved,अनुमोदित Approver,सरकारी गवाह Approving Role,रोल की स्वीकृति +Approving Role cannot be same as role the rule is Applicable To,रोल का अनुमोदन करने के लिए नियम लागू है भूमिका के रूप में ही नहीं हो सकता Approving User,उपयोगकर्ता के स्वीकृति +Approving User cannot be same as user the rule is Applicable To,उपयोगकर्ता का अनुमोदन करने के लिए नियम लागू है उपयोगकर्ता के रूप में ही नहीं हो सकता Are you sure you want to STOP , Are you sure you want to UNSTOP , +Are you sure you want to delete the attachment?,क्या आप सुनिश्चित करें कि आप अनुलग्नक हटाना चाहते हैं? Arrear Amount,बकाया राशि -"As Production Order can be made for this item, \ - it must be a stock item.", -As existing qty for item: ,: आइटम के लिए मौजूदा मात्रा के रूप में +"As Production Order can be made for this item, it must be a stock item.","उत्पादन का आदेश इस मद के लिए बनाया जा सकता है, यह एक शेयर मद होना चाहिए ." As per Stock UOM,स्टॉक UOM के अनुसार "As there are existing stock transactions for this item, you can not change the values of 'Has Serial No', 'Is Stock Item' and 'Valuation Method'","इस मद के लिए मौजूदा स्टॉक लेनदेन कर रहे हैं, आप ' धारावाहिक नहीं है' के मूल्यों को नहीं बदल सकते , और ' मूल्यांकन पद्धति ' शेयर मद है '" +Ascending,आरोही +Assign To,करने के लिए निरुपित +Assigned To,को सौंपा +Assignments,कार्य Atleast one warehouse is mandatory,कम से कम एक गोदाम अनिवार्य है +Attach Document Print,दस्तावेज़ प्रिंट संलग्न +Attach as web link,वेब लिंक के रूप में संलग्न करें +Attachments,किए गए अनुलग्नकों के Attendance,उपस्थिति Attendance Date,उपस्थिति तिथि Attendance Details,उपस्थिति विवरण @@ -305,14 +274,14 @@ Attendance From Date,दिनांक से उपस्थिति Attendance From Date and Attendance To Date is mandatory,तिथि करने के लिए तिथि और उपस्थिति से उपस्थिति अनिवार्य है Attendance To Date,तिथि उपस्थिति Attendance can not be marked for future dates,उपस्थिति भविष्य तारीखों के लिए चिह्नित नहीं किया जा सकता -Attendance for the employee: ,कर्मचारी के लिए उपस्थिति: +Attendance for employee {0} is already marked,कर्मचारी के लिए उपस्थिति {0} पहले से ही चिह्नित है Attendance record.,उपस्थिति रिकॉर्ड. Authorization Control,प्राधिकरण नियंत्रण Authorization Rule,प्राधिकरण नियम Auto Accounting For Stock Settings,शेयर सेटिंग्स के लिए ऑटो लेखांकन -Auto Email Id,ऑटो ईमेल आईडी Auto Material Request,ऑटो सामग्री अनुरोध Auto-raise Material Request if quantity goes below re-order level in a warehouse,मात्रा एक गोदाम में फिर से आदेश के स्तर से नीचे चला जाता है तो सामग्री अनुरोध ऑटो बढ़ा +Automatically compose message on submission of transactions.,स्वचालित रूप से लेनदेन के प्रस्तुत करने पर संदेश लिखें . Automatically extract Job Applicants from a mail box , Automatically extract Leads from a mail box e.g.,स्वचालित रूप से एक मेल बॉक्स से सुराग निकालने उदा Automatically updated via Stock Entry of type Manufacture/Repack,स्वतः प्रकार निर्माण / Repack स्टॉक प्रविष्टि के माध्यम से अद्यतन @@ -325,11 +294,6 @@ BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Average Age,औसत आयु Average Commission Rate,औसत कमीशन दर Average Discount,औसत छूट -B+,B + -B-,बी -BILL,विधेयक -BILLJ,BILLJ -BOM,बीओएम BOM Detail No,बीओएम विस्तार नहीं BOM Explosion Item,बीओएम धमाका आइटम BOM Item,बीओएम आइटम @@ -338,48 +302,56 @@ BOM No. for a Finished Good Item,एक समाप्त अच्छा आ BOM Operation,बीओएम ऑपरेशन BOM Operations,बीओएम संचालन BOM Replace Tool,बीओएम बदलें उपकरण +BOM number is required for manufactured Item {0} in row {1},बीओएम संख्या में निर्मित मद के लिए आवश्यक है {0} पंक्ति में {1} +BOM number not allowed for non-manufactured Item {0} in row {1},गैर विनिर्मित मद के लिए अनुमति नहीं बीओएम संख्या {0} पंक्ति में {1} +BOM recursion: {0} cannot be parent or child of {2},बीओएम रिकर्शन : {0} माता पिता या के बच्चे नहीं हो सकता {2} BOM replaced,बीओएम प्रतिस्थापित +BOM {0} for Item {1} in row {2} is inactive or not submitted,बीओएम {0} मद के लिए {1} पंक्ति में {2} प्रस्तुत निष्क्रिय है या नहीं +BOM {0} is not active or not submitted,बीओएम {0} प्रस्तुत सक्रिय या नहीं नहीं है +BOM {0} is not submitted or inactive BOM for Item {1},बीओएम {0} प्रस्तुत या नहीं है निष्क्रिय बीओएम मद के लिए {1} Backup Manager,बैकअप प्रबंधक Backup Right Now,अभी बैकअप Backups will be uploaded to,बैकअप के लिए अपलोड किया जाएगा Balance Qty,शेष मात्रा +Balance Sheet,बैलेंस शीट Balance Value,शेष मूल्य -"Balances of Accounts of type ""Bank or Cash""",प्रकार "बैंक या नकद" के खातों का शेष +Balance for Account {0} must always be {1},{0} हमेशा होना चाहिए खाता के लिए शेष {1} +Balance must be,बैलेंस होना चाहिए +"Balances of Accounts of type ""Bank"" or ""Cash""","प्रकार "" "" बैंक के खातों की शेष या "" कैश """ Bank,बैंक Bank A/C No.,बैंक ए / सी सं. Bank Account,बैंक खाता Bank Account No.,बैंक खाता नहीं -Bank Accounts,बैंक खातों Bank Clearance Summary,बैंक क्लीयरेंस सारांश Bank Name,बैंक का नाम Bank Reconciliation,बैंक समाधान Bank Reconciliation Detail,बैंक सुलह विस्तार Bank Reconciliation Statement,बैंक समाधान विवरण Bank Voucher,बैंक वाउचर -Bank or Cash,बैंक या कैश Bank/Cash Balance,बैंक / नकद शेष Barcode,बारकोड +Barcode {0} already used in Item {1},बारकोड {0} पहले से ही मद में इस्तेमाल {1} Based On,के आधार पर Basic Info,मूल जानकारी Basic Information,बुनियादी जानकारी Basic Rate,मूल दर Basic Rate (Company Currency),बेसिक रेट (कंपनी मुद्रा) +Basic Section,मूल धारा Batch,बैच Batch (lot) of an Item.,एक आइटम के बैच (बहुत). Batch Finished Date,बैच तिथि समाप्त Batch ID,बैच आईडी Batch No,कोई बैच Batch Started Date,बैच तिथि शुरू किया -Batch Time Logs for Billing.,बैच समय बिलिंग के लिए लॉग. Batch Time Logs for billing.,बैच समय बिलिंग के लिए लॉग. -Batch-Wise Balance History,बैच वार शेष इतिहास +Batch-Wise Balance History,बैच वार बैलेंस इतिहास Batched for Billing,बिलिंग के लिए batched -"Before proceeding, please create Customer from Lead","आगे बढ़ने से पहले , नेतृत्व से ग्राहक बनाएं" Better Prospects,बेहतर संभावनाओं Bill Date,बिल की तारीख Bill No,विधेयक नहीं +Bill No {0} already booked in Purchase Invoice {1},बिल नहीं {0} पहले से ही खरीद चालान बुक {1} +Bill of Material,सामग्री का बिल Bill of Material to be considered for manufacturing,सामग्री का बिल के लिए निर्माण के लिए विचार किया -Bill of Materials,सामग्री के बिल Bill of Materials (BOM),सामग्री के बिल (बीओएम) Billable,बिल Billed,का बिल @@ -396,12 +368,11 @@ Bio,जैव Birthday,जन्मदिन Block Date,तिथि ब्लॉक Block Days,ब्लॉक दिन -Block Holidays on important days.,महत्वपूर्ण दिन पर छुट्टियाँ मै. Block leave applications by department.,विभाग द्वारा आवेदन छोड़ मै. Blog Post,ब्लॉग पोस्ट Blog Subscriber,ब्लॉग सब्सक्राइबर Blood Group,रक्त वर्ग -Both Income and Expense balances are zero. No Need to make Period Closing Entry.,दोनों आय और व्यय शेष शून्य हैं . अवधि अंत प्रविष्टि बनाने के लिए कोई ज़रूरत नहीं. +Bookmarks,बुकमार्क Both Warehouse must belong to same Company,दोनों गोदाम एक ही कंपनी से संबंधित होना चाहिए Branch,शाखा Brand,ब्रांड @@ -417,70 +388,89 @@ Budget Distribution,बजट वितरण Budget Distribution Detail,बजट वितरण विस्तार Budget Distribution Details,बजट वितरण विवरण Budget Variance Report,बजट विचरण रिपोर्ट +Budget cannot be set for Group Cost Centers,बजट समूह लागत केन्द्रों के लिए निर्धारित नहीं किया जा सकता Build Report,रिपोर्ट बनाएँ -Bulk Rename,थोक नाम बदलें -Bummer! There are more holidays than working days this month.,Bummer! कार्य दिवसों में इस महीने की तुलना में अधिक छुट्टियां हैं. +Built on,पर बनाया गया Bundle items at time of sale.,बिक्री के समय में आइटम बंडल. -Buyer of Goods and Services.,सामान और सेवाओं के खरीदार. Buying,क्रय +Buying & Selling,खरीदना और बेचना Buying Amount,राशि ख़रीदना Buying Settings,सेटिंग्स ख़रीदना -By,द्वारा -C-FORM/,/ सी - फार्म C-Form,सी - फार्म C-Form Applicable,लागू सी फार्म C-Form Invoice Detail,सी - फार्म के चालान विस्तार C-Form No,कोई सी - फार्म C-Form records,सी फार्म रिकॉर्ड -CI/2010-2011/,CI/2010-2011 / -COMM-,कॉम - -CUST,कस्टमर -CUSTMUM,CUSTMUM Calculate Based On,के आधार पर गणना करें Calculate Total Score,कुल स्कोर की गणना +Calendar,कैलेंडर Calendar Events,कैलेंडर घटनाओं Call,कॉल Campaign,अभियान Campaign Name,अभियान का नाम +Campaign Name is required,अभियान का नाम आवश्यक है +Campaign Naming By,अभियान नामकरण से +Campaign-.####,अभियान . # # # # +Can be approved by {0},{0} द्वारा अनुमोदित किया जा सकता "Can not filter based on Account, if grouped by Account","खाता से वर्गीकृत किया है , तो खाते के आधार पर फ़िल्टर नहीं कर सकते" "Can not filter based on Voucher No, if grouped by Voucher","वाउचर के आधार पर फ़िल्टर नहीं कर सकते नहीं, वाउचर के आधार पर समूहीकृत अगर" -Cancelled,Cancelled +Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total',प्रभारी प्रकार या ' पिछली पंक्ति कुल ' पिछली पंक्ति राशि पर ' तभी पंक्ति का उल्लेख कर सकते +Cancel,रद्द करें +Cancel Material Visit {0} before cancelling this Customer Issue,रद्द सामग्री भेंट {0} इस ग्राहक इश्यू रद्द करने से पहले +Cancel Material Visits {0} before cancelling this Maintenance Visit,इस रखरखाव भेंट रद्द करने से पहले सामग्री का दौरा {0} रद्द +Cancelled,रद्द Cancelling this Stock Reconciliation will nullify its effect.,इस शेयर सुलह रद्द उसके प्रभाव उठा देना होगा . -Cannot ,नहीं कर सकते Cannot Cancel Opportunity as Quotation Exists,कोटेशन के रूप में मौजूद अवसर रद्द नहीं कर सकते -Cannot approve leave as you are not authorized to approve leaves on Block Dates.,आप ब्लॉक तिथियां पर पत्तियों को स्वीकृत करने के लिए अधिकृत नहीं हैं के रूप में जाने को स्वीकार नहीं कर सकते. +Cannot approve leave as you are not authorized to approve leaves on Block Dates,आप ब्लॉक तारीखों पर पत्तियों को मंजूरी के लिए अधिकृत नहीं हैं के रूप में छुट्टी स्वीकृत नहीं कर सकते +Cannot cancel because Employee {0} is already approved for {1},"कर्मचारी {0} पहले से ही के लिए मंजूरी दे दी है , क्योंकि रद्द नहीं कर सकते {1}" +Cannot cancel because submitted Stock Entry {0} exists,"प्रस्तुत स्टॉक एंट्री {0} मौजूद है , क्योंकि रद्द नहीं कर सकते" +Cannot carry forward {0},आगे नहीं ले जा सकता {0} Cannot change Year Start Date and Year End Date once the Fiscal Year is saved.,वर्ष प्रारंभ तिथि और वित्तीय वर्ष सहेजा जाता है एक बार वर्ष समाप्ति तिथि नहीं बदल सकते. -Cannot continue.,जारी नहीं रख सकते. +"Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency.","मौजूदा लेनदेन कर रहे हैं , क्योंकि कंपनी के डिफ़ॉल्ट मुद्रा में परिवर्तन नहीं कर सकते हैं . लेनदेन डिफ़ॉल्ट मुद्रा बदलने के लिए रद्द कर दिया जाना चाहिए ." +Cannot convert Cost Center to ledger as it has child nodes,यह बच्चे नोड्स के रूप में खाता बही के लिए लागत केंद्र बदला नहीं जा सकता +Cannot covert to Group because Master Type or Account Type is selected.,मास्टर टाइप करें या खाता प्रकार को चुना है क्योंकि समूह को गुप्त नहीं कर सकते हैं . +Cannot deactive or cancle BOM as it is linked with other BOMs,यह अन्य BOMs के साथ जुड़ा हुआ है के रूप में अक्रिय या cancle बीओएम नहीं कर सकते "Cannot declare as lost, because Quotation has been made.","खो के रूप में उद्धरण बना दिया गया है , क्योंकि घोषणा नहीं कर सकते हैं ." -"Cannot delete Serial No in warehouse. \ - First remove from warehouse, then delete.", +Cannot deduct when category is for 'Valuation' or 'Valuation and Total',श्रेणी ' मूल्यांकन ' या ' मूल्यांकन और कुल ' के लिए है जब घटा नहीं कर सकते +"Cannot delete Serial No {0} in stock. First remove from stock, then delete.","स्टॉक में {0} धारावाहिक नहीं हटाया नहीं जा सकता . सबसे पहले हटाना तो , स्टॉक से हटा दें." +"Cannot directly set amount. For 'Actual' charge type, use the rate field","सीधे राशि निर्धारित नहीं कर सकते . 'वास्तविक ' आरोप प्रकार के लिए, दर फ़ील्ड का उपयोग" +Cannot edit standard fields,मानक फ़ील्ड्स संपादित नहीं कर सकते +Cannot open instance when its {0} is open,इसके {0} खुला है जब उदाहरण नहीं खोल सकता +Cannot open {0} when its instance is open,इसके उदाहरण खुला है जब {0} नहीं खोल सकता +"Cannot overbill for Item {0} in row {0} more than {1}. To allow overbilling, please set in 'Setup' > 'Global Defaults'","{1} से {0} अधिक पंक्ति में आइटम {0} के लिए overbill नहीं कर सकते हैं . Overbilling अनुमति देने के लिए , ' वैश्विक मूलभूत '> ' सेटअप' में सेट करें" +Cannot print cancelled documents,रद्द दस्तावेज़ मुद्रित नहीं कर सकते +Cannot produce more Item {0} than Sales Order quantity {1},अधिक आइटम उत्पादन नहीं कर सकते {0} से बिक्री आदेश मात्रा {1} +Cannot refer row number greater than or equal to current row number for this Charge type,इस आरोप प्रकार के लिए अधिक से अधिक या वर्तमान पंक्ति संख्या के बराबर पंक्ति संख्या का उल्लेख नहीं कर सकते +Cannot return more than {0} for Item {1},से अधिक नहीं लौट सकते हैं {0} मद के लिए {1} +Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row,"पहली पंक्ति के लिए ' पिछली पंक्ति कुल पर ', ' पिछली पंक्ति पर राशि ' या के रूप में कार्यभार प्रकार का चयन नहीं कर सकते" +Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for valuation. You can select only 'Total' option for previous row amount or previous row total,"मूल्यांकन के लिए ' पिछली पंक्ति कुल पर ', ' पिछली पंक्ति पर राशि ' या के रूप में कार्यभार प्रकार का चयन नहीं कर सकते हैं . आप पिछली पंक्ति राशि या पिछली पंक्ति कुल के लिए केवल ' कुल ' विकल्प का चयन कर सकते हैं" Cannot set as Lost as Sales Order is made.,बिक्री आदेश किया जाता है के रूप में खो के रूप में सेट नहीं कर सकता . +Cannot set authorization on basis of Discount for {0},के लिए छूट के आधार पर प्राधिकरण सेट नहीं कर सकता {0} Capacity,क्षमता Capacity Units,क्षमता इकाइयों Carry Forward,आगे ले जाना Carry Forwarded Leaves,कैर्री अग्रेषित पत्तियां +Case No(s) already in use. Try from Case No {0},प्रकरण नहीं ( ओं) पहले से ही उपयोग में . प्रकरण नहीं से try {0} Case No. cannot be 0,मुकदमा संख्या 0 नहीं हो सकता Cash,नकद Cash Voucher,कैश वाउचर +Cash or Bank Account is mandatory for making payment entry,नकद या बैंक खाते को भुगतान के प्रवेश करने के लिए अनिवार्य है Cash/Bank Account,नकद / बैंक खाता -Category,श्रेणी Cell Number,सेल नंबर Change UOM for an Item.,एक आइटम के लिए UOM बदलें. Change the starting / current sequence number of an existing series.,एक मौजूदा श्रृंखला के शुरू / वर्तमान अनुक्रम संख्या बदलें. Channel Partner,चैनल पार्टनर -Charge,प्रभार +Charge of type 'Actual' in row {0} cannot be included in Item Rate,प्रकार पंक्ति {0} में 'वास्तविक ' का प्रभार आइटम रेट में शामिल नहीं किया जा सकता Chargeable,प्रभार्य +Chart Name,चार्ट में नाम Chart of Accounts,खातों का चार्ट Chart of Cost Centers,लागत केंद्र के चार्ट -Chat,बातचीत -Check all the items below that you want to send in this digest.,सभी आइटम नीचे है कि आप इस डाइजेस्ट में भेजना चाहते हैं की जाँच करें. Check for Duplicates,डुप्लिकेट के लिए जाँच करें Check how the newsletter looks in an email by sending it to your email.,कैसे न्यूजलेटर अपने ईमेल करने के लिए भेजने से एक ईमेल में लग रहा है की जाँच करें. "Check if recurring invoice, uncheck to stop recurring or put proper End Date","आवर्ती चालान यदि जांच, अचयनित आवर्ती रोकने के लिए या उचित समाप्ति तिथि डाल" "Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.","यदि आप स्वत: आवर्ती चालान की जरूरत की जाँच करें. किसी भी बिक्री चालान प्रस्तुत करने के बाद, आवर्ती अनुभाग दिखाई जाएगी." Check if you want to send salary slip in mail to each employee while submitting salary slip,अगर आप मेल में प्रत्येक कर्मचारी को वेतन पर्ची भेजना चाहते हैं की जाँच करते समय वेतन पर्ची प्रस्तुत Check this if you want to force the user to select a series before saving. There will be no default if you check this.,यह जाँच लें कि आप उपयोगकर्ता बचत से पहले एक श्रृंखला का चयन करने के लिए मजबूर करना चाहते हैं. कोई डिफ़ॉल्ट हो सकता है अगर आप इस जाँच करेगा. -Check this if you want to send emails as this id only (in case of restriction by your email provider).,आप केवल इस आईडी (अपने ईमेल प्रदाता द्वारा प्रतिबंध के मामले में) के रूप में ईमेल भेजना चाहते हैं तो चेक करें. Check this if you want to show in website,यह जाँच लें कि आप वेबसाइट में दिखाना चाहते हैं Check this to disallow fractions. (for Nos),नामंज़ूर भिन्न करने के लिए इसे चेक करें. (ओपन स्कूल के लिए) Check this to pull emails from your mailbox,इस जाँच के लिए अपने मेलबॉक्स से ईमेल खींच @@ -490,35 +480,44 @@ Check to make primary address,प्राथमिक पते की जा Cheque,चैक Cheque Date,चेक तिथि Cheque Number,चेक संख्या +Child account exists for this account. You can not delete this account.,चाइल्ड खाता इस खाते के लिए मौजूद है. आप इस खाते को नष्ट नहीं कर सकते . City,शहर City/Town,शहर / नगर Claim Amount,दावे की राशि Claims for company expense.,कंपनी के खर्च के लिए दावा. Class / Percentage,/ कक्षा प्रतिशत Classic,क्लासिक -Classification of Customers by region,ग्राहक के क्षेत्र द्वारा वर्गीकरण +Clear Cache,साफ़ कैश Clear Table,स्पष्ट मेज Clearance Date,क्लीयरेंस तिथि -Click here to buy subscription.,सदस्यता खरीदने के लिए यहां क्लिक करें. +Clearance Date not mentioned,क्लीयरेंस तिथि का उल्लेख नहीं +Clearance date cannot be before check date in row {0},क्लीयरेंस तारीख पंक्ति में चेक की तारीख से पहले नहीं किया जा सकता {0} Click on 'Make Sales Invoice' button to create a new Sales Invoice.,एक नया बिक्री चालान बनाने के लिए बटन 'बिक्री चालान करें' पर क्लिक करें. Click on a link to get options to expand get options , +Click on row to view / edit.,/ संपादन देखने के लिए पंक्ति पर क्लिक करें . +Click to Expand / Collapse,/ विस्तार करें संकुचित करने के लिए क्लिक करें Client,ग्राहक +Close,बंद करें Close Balance Sheet and book Profit or Loss.,बंद बैलेंस शीट और पुस्तक लाभ या हानि . +Close: {0},बंद : {0} Closed,बंद Closing Account Head,बंद लेखाशीर्ष +Closing Account {0} must be of type 'Liability',खाते {0} समापन प्रकार की देयता ' का होना चाहिए Closing Date,तिथि समापन Closing Fiscal Year,वित्तीय वर्ष और समापन Closing Qty,समापन मात्रा Closing Value,समापन मूल्य CoA Help,सीओए मदद +Code,कोड Cold Calling,सर्द पहुँच +Collapse,संक्षिप्त करें Color,रंग Comma separated list of email addresses,ईमेल पतों की अल्पविराम अलग सूची +Comment,टिप्पणी Comments,टिप्पणियां Commission Rate,आयोग दर Commission Rate (%),आयोग दर (%) -Commission partners and targets,आयोग भागीदारों और लक्ष्य -Commit Log,प्रवेश कमेटी +Commission rate cannot be greater than 100,आयोग दर 100 से अधिक नहीं हो सकता Communication,संचार Communication HTML,संचार HTML Communication History,संचार इतिहास @@ -526,21 +525,21 @@ Communication Medium,संचार माध्यम Communication log.,संचार लॉग इन करें. Communications,संचार Company,कंपनी +Company (not Customer or Supplier) master.,कंपनी ( नहीं ग्राहक या प्रदायक) मास्टर . Company Abbreviation,कंपनी संक्षिप्त Company Details,कंपनी विवरण Company Email,कंपनी ईमेल +"Company Email ID not found, hence mail not sent","कंपनी ईमेल आईडी नहीं मिला , इसलिए नहीं भेजा मेल" Company Info,कंपनी की जानकारी -Company Master.,कंपनी मास्टर. Company Name,कंपनी का नाम Company Settings,कंपनी सेटिंग्स -Company branches.,कंपनी शाखाएं. -Company departments.,कंपनी विभागों. -Company is missing in following warehouses,कंपनी गोदामों निम्नलिखित में लापता है +Company is missing in warehouses {0},कंपनी के गोदामों में याद आ रही है {0} +Company is required,कंपनी की आवश्यकता है Company registration numbers for your reference. Example: VAT Registration Numbers etc.,कंपनी अपने संदर्भ के लिए पंजीकरण संख्या. उदाहरण: वैट पंजीकरण नंबर आदि Company registration numbers for your reference. Tax numbers etc.,कंपनी अपने संदर्भ के लिए पंजीकरण संख्या. टैक्स आदि संख्या "Company, Month and Fiscal Year is mandatory","कंपनी , महीना और वित्तीय वर्ष अनिवार्य है" -Complaint,शिकायत Complete,पूरा +Complete By,द्वारा पूरा करें Completed,पूरा Completed Production Orders,पूरे किए उत्पादन के आदेश Completed Qty,पूरी की मात्रा @@ -567,28 +566,41 @@ Contact Name,संपर्क का नाम Contact No.,सं संपर्क Contact Person,संपर्क व्यक्ति Contact Type,संपर्क प्रकार +Contact master.,संपर्क मास्टर . +Contacts,संपर्क Content,सामग्री Content Type,सामग्री प्रकार Contra Voucher,कॉन्ट्रा वाउचर Contract End Date,अनुबंध समाप्ति तिथि +Contract End Date must be greater than Date of Joining,अनुबंध समाप्ति तिथि शामिल होने की तिथि से अधिक होना चाहिए Contribution (%),अंशदान (%) Contribution to Net Total,नेट कुल के लिए अंशदान Conversion Factor,परिवर्तनकारक तत्व -Conversion Factor of UOM: %s should be equal to 1. As UOM: %s is Stock UOM of Item: %s.,UOM का रूपांतरण कारक : % S 1 के बराबर होना चाहिए . UOM के रूप में: % s मद के शेयर UOM है:% s . +Conversion Factor is required,रूपांतरण कारक की आवश्यकता है +Conversion factor cannot be in fractions,रूपांतरण कारक भागों में नहीं किया जा सकता +Conversion factor for default Unit of Measure must be 1 in row {0},उपाय की मूलभूत इकाई के लिए रूपांतरण कारक पंक्ति में 1 होना चाहिए {0} +Conversion rate cannot be 0 or 1,रूपांतरण दर 0 या 1 नहीं किया जा सकता Convert into Recurring Invoice,आवर्ती चालान में कन्वर्ट Convert to Group,समूह के साथ परिवर्तित Convert to Ledger,लेजर के साथ परिवर्तित Converted,परिवर्तित +Copy,कॉपी करें Copy From Item Group,आइटम समूह से कॉपी Cost Center,लागत केंद्र Cost Center Details,लागत केंद्र विवरण Cost Center Name,लागत केन्द्र का नाम -Cost Center must be specified for PL Account: ,लागत केंद्र पीएल खाते के लिए निर्दिष्ट किया जाना चाहिए: +Cost Center Name already exists,लागत केंद्र का नाम पहले से मौजूद है +Cost Center is mandatory for Item {0},लागत केंद्र मद के लिए अनिवार्य है {0} +Cost Center is required for 'Profit and Loss' account {0},लागत केंद्र ' लाभ और हानि के खाते के लिए आवश्यक है {0} +Cost Center is required in row {0} in Taxes table for type {1},लागत केंद्र पंक्ति में आवश्यक है {0} कर तालिका में प्रकार के लिए {1} +Cost Center with existing transactions can not be converted to group,मौजूदा लेनदेन के साथ लागत केंद्र समूह परिवर्तित नहीं किया जा सकता है +Cost Center with existing transactions can not be converted to ledger,मौजूदा लेनदेन के साथ लागत केंद्र लेज़र परिवर्तित नहीं किया जा सकता है +Cost Center {0} does not belong to Company {1},लागत केंद्र {0} से संबंधित नहीं है कंपनी {1} +Cost of Goods Sold,बेच माल की लागत Costing,लागत Country,देश Country Name,देश का नाम "Country, Timezone and Currency","देश , समय क्षेत्र और मुद्रा" -Create,बनाना Create Bank Voucher for the total salary paid for the above selected criteria,कुल ऊपर चयनित मानदंड के लिए वेतन भुगतान के लिए बैंक वाउचर बनाएँ Create Customer,ग्राहक बनाएँ Create Material Requests,सामग्री अनुरोध बनाएँ @@ -599,14 +611,11 @@ Create Quotation,कोटेशन बनाएँ Create Receiver List,रिसीवर सूची बनाएँ Create Salary Slip,वेतनपर्ची बनाएँ Create Stock Ledger Entries when you submit a Sales Invoice,आप एक बिक्री चालान प्रस्तुत जब स्टॉक लेजर प्रविष्टियां बनाएँ -Create and Send Newsletters,समाचारपत्रिकाएँ बनाएँ और भेजें -Created Account Head: ,बनाया गया खाता सिर: +"Create and manage daily, weekly and monthly email digests.","बनाएँ और दैनिक, साप्ताहिक और मासिक ईमेल हज़म का प्रबंधन ." +Create rules to restrict transactions based on values.,मूल्यों पर आधारित लेनदेन को प्रतिबंधित करने के नियम बनाएँ . Created By,द्वारा बनाया गया -Created Customer Issue,बनाया ग्राहक के मुद्दे -Created Group ,बनाया समूह -Created Opportunity,अवसर पैदा -Created Support Ticket,बनाया समर्थन टिकट Creates salary slip for above mentioned criteria.,उपरोक्त मानदंडों के लिए वेतन पर्ची बनाता है. +Creation / Modified By,निर्माण / द्वारा संशोधित Creation Date,निर्माण तिथि Creation Document No,निर्माण का दस्तावेज़ Creation Document Type,निर्माण दस्तावेज़ प्रकार @@ -620,24 +629,25 @@ Credit Days,क्रेडिट दिन Credit Limit,साख सीमा Credit Note,जमापत्र Credit To,करने के लिए क्रेडिट -Credited account (Customer) is not matching with Sales Invoice,श्रेय खाता (ग्राहक ) सेल्स चालान के साथ मेल नहीं है -Cross Listing of Item in multiple groups,कई समूहों में आइटम लिस्टिंग पार Currency,मुद्रा Currency Exchange,मुद्रा विनिमय Currency Name,मुद्रा का नाम Currency Settings,मुद्रा सेटिंग्स Currency and Price List,मुद्रा और मूल्य सूची -Currency is missing for Price List,मुद्रा मूल्य सूची के लिए याद आ रही है +Currency exchange rate master.,मुद्रा विनिमय दर मास्टर . Current Address,वर्तमान पता Current Address Is,वर्तमान पता है Current BOM,वर्तमान बीओएम +Current BOM and New BOM can not be same,वर्तमान बीओएम और नई बीओएम ही नहीं किया जा सकता है Current Fiscal Year,चालू वित्त वर्ष Current Stock,मौजूदा स्टॉक Current Stock UOM,वर्तमान स्टॉक UOM Current Value,वर्तमान मान +Current status,वर्तमान स्थिति Custom,रिवाज Custom Autoreply Message,कस्टम स्वतः संदेश Custom Message,कस्टम संदेश +Custom Reports,कस्टम रिपोर्ट Customer,ग्राहक Customer (Receivable) Account,ग्राहक (प्राप्ति) खाता Customer / Item Name,ग्राहक / मद का नाम @@ -649,8 +659,6 @@ Customer Addresses And Contacts,ग्राहक के पते और स Customer Code,ग्राहक कोड Customer Codes,ग्राहक संहिताओं Customer Details,ग्राहक विवरण -Customer Discount,ग्राहक डिस्काउंट -Customer Discounts,ग्राहक छूट Customer Feedback,ग्राहक प्रतिक्रिया Customer Group,ग्राहक समूह Customer Group / Customer,ग्राहक समूह / ग्राहक @@ -660,46 +668,50 @@ Customer Issue,ग्राहक के मुद्दे Customer Issue against Serial No.,सीरियल नंबर के खिलाफ ग्राहक अंक Customer Name,ग्राहक का नाम Customer Naming By,द्वारा नामकरण ग्राहक -Customer classification tree.,ग्राहक वर्गीकरण पेड़. Customer database.,ग्राहक डेटाबेस. +Customer is required,ग्राहक की आवश्यकता है +Customer master.,ग्राहक गुरु . +Customer required for 'Customerwise Discount',' Customerwise डिस्काउंट ' के लिए आवश्यक ग्राहक +Customer {0} does not belong to project {1},ग्राहक {0} परियोजना से संबंधित नहीं है {1} Customer's Item Code,ग्राहक आइटम कोड Customer's Purchase Order Date,ग्राहक की खरीद आदेश दिनांक Customer's Purchase Order No,ग्राहक की खरीद आदेश नहीं Customer's Purchase Order Number,उपभोक्ता खरीद आदेश संख्या Customer's Vendor,ग्राहक विक्रेता -Customers Not Buying Since Long Time,ग्राहकों को लंबे समय के बाद से नहीं खरीद +Customers Not Buying Since Long Time,ग्राहकों को लंबे समय से खरीद नहीं Customerwise Discount,Customerwise डिस्काउंट -Customization,अनुकूलन +Customize,को मनपसंद Customize the Notification,अधिसूचना को मनपसंद Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,परिचयात्मक पाठ है कि कि ईमेल के एक भाग के रूप में चला जाता है अनुकूलित. प्रत्येक लेनदेन एक अलग परिचयात्मक पाठ है. -DN,डी.एन. DN Detail,डी.एन. विस्तार Daily,दैनिक Daily Time Log Summary,दैनिक समय प्रवेश सारांश -Data Import,डेटा आयात Database Folder ID,डेटाबेस फ़ोल्डर आईडी Database of potential customers.,संभावित ग्राहकों के लिए धन्यवाद. Date,तारीख Date Format,दिनांक स्वरूप Date Of Retirement,सेवानिवृत्ति की तारीख +Date Of Retirement must be greater than Date of Joining,सेवानिवृत्ति की तिथि शामिल होने की तिथि से अधिक होना चाहिए Date and Number Settings,तिथि और संख्या सेटिंग्स Date is repeated,तिथि दोहराया है +Date must be in format: {0},तिथि प्रारूप में होना चाहिए : {0} Date of Birth,जन्म तिथि Date of Issue,जारी करने की तारीख Date of Joining,शामिल होने की तिथि +Date of Joining must be greater than Date of Birth,शामिल होने की तिथि जन्म तिथि से अधिक होना चाहिए Date on which lorry started from supplier warehouse,जिस पर तिथि लॉरी आपूर्तिकर्ता गोदाम से शुरू Date on which lorry started from your warehouse,जिस पर तिथि लॉरी अपने गोदाम से शुरू Dates,तिथियां Days Since Last Order,दिनों से पिछले आदेश Days for which Holidays are blocked for this department.,दिन छुट्टियाँ जिसके लिए इस विभाग के लिए अवरुद्ध कर रहे हैं. Dealer,व्यापारी +Dear,प्रिय Debit,नामे Debit Amt,डेबिट राशि Debit Note,डेबिट नोट Debit To,करने के लिए डेबिट -Debit and Credit not equal for this voucher: Diff (Debit) is , -Debit or Credit,डेबिट या क्रेडिट -Debited account (Supplier) is not matching with Purchase Invoice,डेबिट कर खाता ( आपूर्तिकर्ता) खरीद चालान के साथ मेल नहीं है +Debit and Credit not equal for this voucher. Difference is {0}.,डेबिट और इस वाउचर के लिए बराबर नहीं क्रेडिट . अंतर {0} है . +Debit must equal Credit. The difference is {0},डेबिट क्रेडिट के बराबर होना चाहिए . फर्क है {0} Deduct,घटाना Deduction,कटौती Deduction Type,कटौती के प्रकार @@ -710,10 +722,10 @@ Default Account,डिफ़ॉल्ट खाता Default BOM,Default बीओएम Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.,डिफ़ॉल्ट खाता / बैंक कैश स्वतः स्थिति चालान में अद्यतन किया जाएगा जब इस मोड का चयन किया जाता है. Default Bank Account,डिफ़ॉल्ट बैंक खाता +Default Buying Cost Center,डिफ़ॉल्ट ख़रीदना लागत केंद्र Default Buying Price List,डिफ़ॉल्ट खरीद मूल्य सूची Default Cash Account,डिफ़ॉल्ट नकद खाता Default Company,Default कंपनी -Default Cost Center,डिफ़ॉल्ट लागत केंद्र Default Cost Center for tracking expense for this item.,इस मद के लिए खर्च पर नज़र रखने के लिए डिफ़ॉल्ट लागत केंद्र. Default Currency,डिफ़ॉल्ट मुद्रा Default Customer Group,डिफ़ॉल्ट ग्राहक समूह @@ -722,6 +734,7 @@ Default Income Account,डिफ़ॉल्ट आय खाता Default Item Group,डिफ़ॉल्ट आइटम समूह Default Price List,डिफ़ॉल्ट मूल्य सूची Default Purchase Account in which cost of the item will be debited.,डिफ़ॉल्ट खरीद खाता जिसमें मद की लागत डेबिट हो जाएगा. +Default Selling Cost Center,डिफ़ॉल्ट बिक्री लागत केंद्र Default Settings,डिफ़ॉल्ट सेटिंग Default Source Warehouse,डिफ़ॉल्ट स्रोत वेअरहाउस Default Stock UOM,Default स्टॉक UOM @@ -729,19 +742,23 @@ Default Supplier,डिफ़ॉल्ट प्रदायक Default Supplier Type,डिफ़ॉल्ट प्रदायक प्रकार Default Target Warehouse,डिफ़ॉल्ट लक्ष्य वेअरहाउस Default Territory,Default टेरिटरी -Default UOM updated in item , Default Unit of Measure,माप की मूलभूत इकाई "Default Unit of Measure can not be changed directly because you have already made some transaction(s) with another UOM. To change default UOM, use 'UOM Replace Utility' tool under Stock module.","आप पहले से ही एक और UOM साथ कुछ लेन - देन (ओं ) बना दिया है क्योंकि उपाय की मूलभूत इकाई सीधे नहीं बदला जा सकता . डिफ़ॉल्ट UOM को बदलने के लिए , स्टॉक मॉड्यूल के तहत ' UOM उपयोगिता बदलें' उपकरण का उपयोग करें." Default Valuation Method,डिफ़ॉल्ट मूल्यन विधि Default Warehouse,डिफ़ॉल्ट गोदाम -Default Warehouse is mandatory for Stock Item.,डिफ़ॉल्ट गोदाम स्टॉक मद के लिए अनिवार्य है. -Default settings for Shopping Cart,खरीदारी की टोकरी के लिए डिफ़ॉल्ट सेटिंग्स +Default Warehouse is mandatory for stock Item.,डिफ़ॉल्ट गोदाम स्टॉक मद के लिए अनिवार्य है . +Default settings for accounting transactions.,लेखांकन लेनदेन के लिए डिफ़ॉल्ट सेटिंग्स . +Default settings for buying transactions.,लेनदेन खरीदने के लिए डिफ़ॉल्ट सेटिंग्स . +Default settings for selling transactions.,लेनदेन को बेचने के लिए डिफ़ॉल्ट सेटिंग्स . +Default settings for stock transactions.,शेयर लेनदेन के लिए डिफ़ॉल्ट सेटिंग्स . "Define Budget for this Cost Center. To set budget action, see
Company Master","इस लागत केंद्र के लिए बजट निर्धारित. बजट कार्रवाई तय करने के लिए, देखने के लिए कंपनी मास्टर" Delete,हटाना +Delete Row,पंक्ति हटाएँ +Delete {0} {1}?,हटाएँ {0} {1} ? Delivered,दिया गया Delivered Items To Be Billed,बिल के लिए दिया आइटम Delivered Qty,वितरित मात्रा -Delivered Serial No , +Delivered Serial No {0} cannot be deleted,वितरित धारावाहिक नहीं {0} मिटाया नहीं जा सकता Delivery Date,प्रसव की तारीख Delivery Details,वितरण विवरण Delivery Document No,डिलिवरी दस्तावेज़ @@ -753,28 +770,35 @@ Delivery Note Message,डिलिवरी नोट संदेश Delivery Note No,डिलिवरी नोट Delivery Note Required,डिलिवरी नोट आवश्यक Delivery Note Trends,डिलिवरी नोट रुझान +Delivery Note {0} is not submitted,डिलिवरी नोट {0} प्रस्तुत नहीं किया गया है +Delivery Note {0} must not be submitted,डिलिवरी नोट {0} प्रस्तुत नहीं किया जाना चाहिए +Delivery Notes {0} must be cancelled before cancelling this Sales Order,डिलिवरी नोट्स {0} इस बिक्री आदेश रद्द करने से पहले रद्द कर दिया जाना चाहिए Delivery Status,डिलिवरी स्थिति Delivery Time,सुपुर्दगी समय Delivery To,करने के लिए डिलिवरी Department,विभाग Depends on LWP,LWP पर निर्भर करता है +Descending,अवरोही Description,विवरण Description HTML,विवरण HTML -Description of a Job Opening,एक नौकरी खोलने का विवरण Designation,पदनाम Detailed Breakup of the totals,योग की विस्तृत ब्रेकअप Details,विवरण Difference,अंतर Difference Account,अंतर खाता -Different UOM for items will lead to incorrect,मदों के लिए अलग UOM गलत को बढ़ावा मिलेगा +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.,मदों के लिए अलग UOM गलत ( कुल ) नेट वजन मूल्य को बढ़ावा मिलेगा. प्रत्येक आइटम का शुद्ध वजन ही UOM में है कि सुनिश्चित करें. +Disable,असमर्थ Disable Rounded Total,गोल कुल अक्षम +Disabled,विकलांग Discount %,डिस्काउंट% Discount %,डिस्काउंट% Discount (%),डिस्काउंट (%) +Discount Amount,छूट राशि "Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice","डिस्काउंट फील्ड्स खरीद आदेश, खरीद रसीद, खरीद चालान में उपलब्ध हो जाएगा" +Discount Percentage,डिस्काउंट प्रतिशत +Discount must be less than 100,सबसे कम से कम 100 होना चाहिए Discount(%),डिस्काउंट (%) Display all the individual items delivered with the main items,सभी व्यक्तिगत मुख्य आइटम के साथ वितरित आइटम प्रदर्शित -Distinct unit of an Item,एक आइटम की अलग इकाई Distribute transport overhead across items.,आइटम में परिवहन उपरि बांटो. Distribution,वितरण Distribution Id,वितरण आईडी @@ -783,19 +807,25 @@ Distributor,वितरक Divorced,तलाकशुदा Do Not Contact,संपर्क नहीं है Do not show any symbol like $ etc next to currencies.,$ मुद्राओं की बगल आदि की तरह किसी भी प्रतीक नहीं दिखा. +Do really want to unstop production order: , Do you really want to STOP , Do you really want to STOP this Material Request?,आप वास्तव में इस सामग्री अनुरोध बंद करना चाहते हैं ? -Do you really want to Submit all Salary Slip for month : , +Do you really want to Submit all Salary Slip for month {0} and year {1},आप वास्तव में {0} और वर्ष {1} माह के लिए सभी वेतन पर्ची प्रस्तुत करना चाहते हैं Do you really want to UNSTOP , Do you really want to UNSTOP this Material Request?,आप वास्तव में इस सामग्री अनुरोध आगे बढ़ाना चाहते हैं? +Do you really want to stop production order: , Doc Name,डॉक्टर का नाम Doc Type,डॉक्टर के प्रकार Document Description,दस्तावेज का विवरण +Document Status transition from ,से दस्तावेज स्थिति संक्रमण +Document Status transition from {0} to {1} is not allowed,{1} के लिए {0} से दस्तावेज स्थिति संक्रमण की अनुमति नहीं है Document Type,दस्तावेज़ प्रकार +Document is only editable by users of role,दस्तावेज़ भूमिका के उपयोगकर्ताओं द्वारा केवल संपादन है Documentation,प्रलेखन Documents,दस्तावेज़ Domain,डोमेन Don't send Employee Birthday Reminders,कर्मचारी जन्मदिन अनुस्मारक न भेजें +Download,डाउनलोड Download Materials Required,आवश्यक सामग्री डाउनलोड करें Download Reconcilation Data,Reconcilation डेटा डाउनलोड Download Template,टेम्पलेट डाउनलोड करें @@ -804,16 +834,18 @@ Download a report containing all raw materials with their latest inventory statu "Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records", Draft,मसौदा +Drafts,ड्राफ्ट्स +Drag to sort columns,तरह स्तंभों को खींचें Dropbox,ड्रॉपबॉक्स Dropbox Access Allowed,ड्रॉपबॉक्स उपयोग की अनुमति दी Dropbox Access Key,ड्रॉपबॉक्स प्रवेश कुंजी Dropbox Access Secret,ड्रॉपबॉक्स पहुँच गुप्त Due Date,नियत तारीख -Duplicate Item,आइटम डुप्लिकेट -EMP/,/ ईएमपी +Duplicate Entry. Please check Authorization Rule {0},एंट्री डुप्लिकेट. प्राधिकरण नियम की जांच करें {0} +Duplicate Serial No entered for Item {0},डुप्लीकेट सीरियल मद के लिए दर्ज किया गया {0} +Duplicate row {0} with same {1},डुप्लिकेट पंक्ति {0} के साथ एक ही {1} ERPNext Setup,ERPNext सेटअप ERPNext Setup Guide,ERPNext सेटअप गाइड -"ERPNext is an open-source web based ERP made by Web Notes Technologies Pvt Ltd. to provide an integrated tool to manage most processes in a small organization. For more information about Web Notes, or to buy hosting servies, go to ", ESIC CARD No,ईएसआईसी कार्ड नहीं ESIC No.,ईएसआईसी सं. Earliest,शीघ्रातिशीघ्र @@ -822,9 +854,13 @@ Earning & Deduction,अर्जन कटौती Earning Type,प्रकार कमाई Earning1,Earning1 Edit,संपादित करें +Editable,संपादन Educational Qualification,शैक्षिक योग्यता Educational Qualification Details,शैक्षिक योग्यता विवरण Eg. smsgateway.com/api/send_sms.cgi,उदा. एपीआई smsgateway.com / / send_sms.cgi +Either debit or credit amount is required for {0},डेबिट या क्रेडिट राशि के लिए या तो आवश्यक है {0} +Either target qty or target amount is mandatory,लक्ष्य मात्रा या लक्ष्य राशि या तो अनिवार्य है +Either target qty or target amount is mandatory.,लक्ष्य मात्रा या लक्ष्य राशि या तो अनिवार्य है . Electricity Cost,बिजली की लागत Electricity cost per hour,प्रति घंटे बिजली की लागत Email,ईमेल @@ -832,49 +868,54 @@ Email Digest,ईमेल डाइजेस्ट Email Digest Settings,ईमेल डाइजेस्ट सेटिंग Email Digest: , Email Id,ईमेल आईडी -"Email Id must be unique, already exists for: ","ईमेल आईडी अद्वितीय होना चाहिए, के लिए पहले से ही मौजूद है:" "Email Id where a job applicant will email e.g. ""jobs@example.com""",ईमेल आईडी जहां एक नौकरी आवेदक जैसे "jobs@example.com" ईमेल करेंगे +Email Notifications,ईमेल सूचनाएं Email Sent?,ईमेल भेजा है? -Email Settings,ईमेल सेटिंग -Email Settings for Outgoing and Incoming Emails.,निवर्तमान और आने वाली ईमेल के लिए ईमेल सेटिंग्स. +"Email addresses, separted by commas","ईमेल पते, अल्पविराम के द्वारा separted" +"Email id must be unique, already exists for {0}","ईमेल आईडी अद्वितीय होना चाहिए , पहले से ही मौजूद है {0}" Email ids separated by commas.,ईमेल आईडी अल्पविराम के द्वारा अलग. -"Email settings for jobs email id ""jobs@example.com""",नौकरियाँ ईमेल आईडी "jobs@example.com" के लिए ईमेल सेटिंग्स +Email sent to {0},ईमेल भेजा {0} "Email settings to extract Leads from sales email id e.g. ""sales@example.com""",ईमेल सेटिंग्स बिक्री ईमेल आईडी जैसे "sales@example.com से सुराग निकालने के लिए +Email...,ईमेल ... Emergency Contact,आपातकालीन संपर्क Emergency Contact Details,आपातकालीन सम्पर्क करने का विवरण Emergency Phone,आपातकालीन फोन Employee,कर्मचारी Employee Birthday,कर्मचारी जन्मदिन -Employee Designation.,कर्मचारी पदनाम. Employee Details,कर्मचारी विवरण Employee Education,कर्मचारी शिक्षा Employee External Work History,कर्मचारी बाहरी काम इतिहास -Employee Information,कर्मचारी सूचना +Employee Information,कर्मचारी जानकारी Employee Internal Work History,कर्मचारी आंतरिक कार्य इतिहास Employee Internal Work Historys,कर्मचारी आंतरिक कार्य Historys Employee Leave Approver,कर्मचारी छुट्टी अनुमोदक -Employee Leave Balance,कर्मचारी छुट्टी शेष +Employee Leave Balance,कर्मचारी लीव बैलेंस Employee Name,कर्मचारी का नाम Employee Number,कर्मचारियों की संख्या Employee Records to be created by,कर्मचारी रिकॉर्ड्स द्वारा पैदा किए जाने की Employee Settings,कर्मचारी सेटिंग्स -Employee Setup,कर्मचारी सेटअप Employee Type,कर्मचारी प्रकार -Employee grades,कर्मचारी ग्रेड +"Employee designation (e.g. CEO, Director etc.).","कर्मचारी पदनाम (जैसे सीईओ , निदेशक आदि ) ." +Employee grade.,कर्मचारी ग्रेड . +Employee master.,कर्मचारी मास्टर . Employee record is created using selected field. ,कर्मचारी रिकॉर्ड चयनित क्षेत्र का उपयोग कर बनाया जाता है. Employee records.,कर्मचारी रिकॉर्ड. -Employee: ,कर्मचारी: +Employee relieved on {0} must be set as 'Left',{0} को राहत मिली कर्मचारी 'वाम ' के रूप में स्थापित किया जाना चाहिए +Employee {0} has already applied for {1} between {2} and {3},कर्मचारी {0} पहले से ही दोनों के बीच {1} के लिए आवेदन किया है {2} और {3} +Employee {0} is not active or does not exist,कर्मचारी {0} सक्रिय नहीं है या मौजूद नहीं है +Employee {0} was on leave on {1}. Cannot mark attendance.,कर्मचारी {0} {1} को छुट्टी पर था . उपस्थिति को चिह्नित नहीं किया जा सकता . Employees Email Id,ईमेल आईडी कर्मचारी Employment Details,रोजगार के विवरण Employment Type,रोजगार के प्रकार -Enable / Disable Email Notifications,/ निष्क्रिय ईमेल अधिसूचना सक्रिय -Enable Shopping Cart,शॉपिंग कार्ट सक्षम करें +Enable / disable currencies.,/ निष्क्रिय मुद्राओं सक्षम करें. Enabled,Enabled Encashment Date,नकदीकरण तिथि End Date,समाप्ति तिथि +End Date can not be less than Start Date,समाप्ति तिथि आरंभ तिथि से कम नहीं हो सकता End date of current invoice's period,वर्तमान चालान की अवधि की समाप्ति की तारीख End of Life,जीवन का अंत Enter Row,पंक्ति दर्ज +Enter Value,मान दर्ज Enter Verification Code,सत्यापन कोड दर्ज Enter campaign name if the source of lead is campaign.,अभियान का नाम दर्ज करें अगर नेतृत्व के स्रोत अभियान है. Enter department to which this Contact belongs,विभाग को जो इस संपर्क के अंतर्गत आता दर्ज करें @@ -889,8 +930,10 @@ Enter url parameter for receiver nos,रिसीवर ओपन स्कू Entries,प्रविष्टियां Entries against,प्रविष्टियों के खिलाफ Entries are not allowed against this Fiscal Year if the year is closed.,"प्रविष्टियों इस वित्त वर्ष के खिलाफ की अनुमति नहीं है, अगर साल बंद कर दिया जाता है." -Error,त्रुटि -Error for,के लिए त्रुटि +Entries before {0} are frozen,{0} पहले प्रविष्टियां जमे हुए हैं +Equals,बराबरी +Equity,इक्विटी +Error: {0} > {1},त्रुटि: {0} > {1} Estimated Material Cost,अनुमानित मटेरियल कॉस्ट Everyone can read,हर कोई पढ़ सकता है "Example: ABCD.##### @@ -903,9 +946,13 @@ Exhibition,प्रदर्शनी Existing Customer,मौजूदा ग्राहक Exit,निकास Exit Interview Details,साक्षात्कार विवरण से बाहर निकलें +Expand,विस्तृत करें Expected,अपेक्षित +Expected Completion Date can not be less than Project Start Date,पूरा होने की उम्मीद तिथि परियोजना शुरू की तारीख से कम नहीं हो सकता Expected Date cannot be before Material Request Date,उम्मीद की तारीख सामग्री अनुरोध तिथि से पहले नहीं हो सकता Expected Delivery Date,उम्मीद डिलीवरी की तारीख +Expected Delivery Date cannot be before Purchase Order Date,उम्मीद की डिलीवरी तिथि खरीद आदेश तिथि से पहले नहीं हो सकता +Expected Delivery Date cannot be before Sales Order Date,उम्मीद की डिलीवरी की तारीख से पहले बिक्री आदेश तिथि नहीं हो सकता Expected End Date,उम्मीद समाप्ति तिथि Expected Start Date,उम्मीद प्रारंभ दिनांक Expense Account,व्यय लेखा @@ -924,17 +971,18 @@ Expense Claim is pending approval. Only the Expense Approver can update status., Expense Date,व्यय तिथि Expense Details,व्यय विवरण Expense Head,व्यय प्रमुख -Expense account is mandatory for item,व्यय खाते आइटम के लिए अनिवार्य है -Expense/Difference account is mandatory for item: , +Expense account is mandatory for item {0},व्यय खाते आइटम के लिए अनिवार्य है {0} +Expense or Difference account is mandatory for Item {0} as there is difference in value,व्यय या अंतर खाता अनिवार्य है मद के लिए {0} मूल्य में अंतर नहीं है के रूप में Expenses Booked,व्यय बुक Expenses Included In Valuation,व्यय मूल्यांकन में शामिल Expenses booked for the digest period,पचाने अवधि के लिए बुक व्यय Expiry Date,समाप्ति दिनांक +Export,निर्यात +Export not allowed. You need {0} role to export.,निर्यात की अनुमति नहीं . आप निर्यात करने के लिए {0} भूमिका की जरूरत है. Exports,निर्यात External,बाहरी Extract Emails,ईमेल निकालें FCFS Rate,FCFS दर -FIFO,फीफो Failed: ,विफल: Family Background,पारिवारिक पृष्ठभूमि Fax,फैक्स @@ -945,41 +993,48 @@ Feedback,प्रतिपुष्टि Female,महिला Fetch exploded BOM (including sub-assemblies),( उप असेंबलियों सहित) विस्फोट बीओएम लायें "Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","डिलिवरी नोट, कोटेशन, बिक्री चालान, विक्रय आदेश में उपलब्ध फील्ड" +Field {0} is not selectable.,फ़ील्ड {0} चयन नहीं है . +File,फ़ाइल Files Folder ID,फ़ाइलें फ़ोल्डर आईडी Fill the form and save it,फार्म भरें और इसे बचाने के लिए +Filter,फ़िल्टर Filter By Amount,राशि के द्वारा फिल्टर Filter By Date,तिथि फ़िल्टर Filter based on customer,ग्राहकों के आधार पर फ़िल्टर Filter based on item,आइटम के आधार पर फ़िल्टर +Final Confirmation Date must be greater than Date of Joining,अंतिम पुष्टि दिनांक शामिल होने की तिथि से अधिक होना चाहिए +Financial / accounting year.,वित्तीय / लेखा वर्ष . Financial Analytics,वित्तीय विश्लेषिकी -Financial Statements,वित्तीय विवरण Finished Goods,निर्मित माल First Name,प्रथम नाम First Responded On,पर पहले जवाब Fiscal Year,वित्तीय वर्ष -Fixed Asset Account,फिक्स्ड आस्ति खाता +Fixed Asset,स्थायी परिसम्पत्ति Float Precision,प्रेसिजन फ्लोट Follow via Email,ईमेल के माध्यम से पालन करें "Following table will show values if items are sub - contracted. These values will be fetched from the master of ""Bill of Materials"" of sub - contracted items.",तालिका के बाद मूल्यों को दिखाने अगर आइटम उप - अनुबंध. अनुबंधित आइटम - इन मूल्यों को उप "सामग्री के विधेयक" के मालिक से दिलवाया जाएगा. For Company,कंपनी के लिए For Employee,कर्मचारी के लिए For Employee Name,कर्मचारी का नाम +For Price List,मूल्य सूची के लिए For Production,उत्पादन के लिए For Reference Only.,संदर्भ के लिए ही. For Sales Invoice,बिक्री चालान के लिए For Server Side Print Formats,सर्वर साइड प्रिंट स्वरूपों के लिए For Supplier,सप्लायर के लिए -For UOM,UOM लिए For Warehouse,गोदाम के लिए +"For comparative filters, start with","तुलनात्मक फिल्टर करने के लिए, के साथ शुरू" "For e.g. 2012, 2012-13","जैसे 2012, 2012-13 के लिए" -For opening balance entry account can not be a PL account,संतुलन प्रविष्टि खाता खोलने के एक pl खाता नहीं हो सकता +For ranges,श्रेणियों के लिए For reference,संदर्भ के लिए For reference only.,संदर्भ के लिए ही है. "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes",ग्राहकों की सुविधा के लिए इन कोड प्रिंट स्वरूपों में चालान और वितरण नोट की तरह इस्तेमाल किया जा सकता है -Forum,फोरम +Form,प्रपत्र +Forums,मंचों Fraction,अंश Fraction Units,अंश इकाइयों Freeze Stock Entries,स्टॉक प्रविष्टियां रुक +Freeze Stocks Older Than [Days],रुक स्टॉक से अधिक उम्र [ दिन] Friday,शुक्रवार From,से From Bill of Materials,सामग्री के बिल से @@ -989,6 +1044,7 @@ From Currency and To Currency cannot be same,मुद्रा से और From Customer,ग्राहक से From Customer Issue,ग्राहक मुद्दे से From Date,दिनांक से +From Date must be before To Date,दिनांक से पहले तिथि करने के लिए होना चाहिए From Delivery Note,डिलिवरी नोट से From Employee,कर्मचारी से From Lead,लीड से @@ -1003,17 +1059,17 @@ From Sales Order,बिक्री आदेश से From Supplier Quotation,प्रदायक से उद्धरण From Time,समय से From Value,मूल्य से -From Value should be less than To Value,मूल्य से मूल्य के लिए कम से कम होना चाहिए +From and To dates required,दिनांक से और +From value must be less than to value in row {0},मूल्य से पंक्ति में मान से कम होना चाहिए {0} Frozen,फ्रोजन Frozen Accounts Modifier,बंद खाते संशोधक Fulfilled,पूरा Full Name,पूरा नाम Fully Completed,पूरी तरह से पूरा -"Further accounts can be made under Groups,","इसके अलावा खातों समूह के तहत बनाया जा सकता है ," +Further accounts can be made under Groups but entries can be made against Ledger,इसके अलावा खातों समूह के तहत बनाया जा सकता है लेकिन प्रविष्टियों लेजर के खिलाफ किया जा सकता है +"Further accounts can be made under Groups, but entries can be made against Ledger","इसके अलावा खातों समूह के तहत बनाया जा सकता है , लेकिन प्रविष्टियों लेजर के खिलाफ किया जा सकता है" Further nodes can be only created under 'Group' type nodes,इसके अलावा नोड्स केवल ' समूह ' प्रकार नोड्स के तहत बनाया जा सकता है GL Entry,जीएल एंट्री -GL Entry: Debit or Credit amount is mandatory for ,जीएल एंट्री: डेबिट या क्रेडिट राशि के लिए अनिवार्य है -GRN,GRN Gantt Chart,Gantt चार्ट Gantt chart of all tasks.,सभी कार्यों के गैंट चार्ट. Gender,लिंग @@ -1023,11 +1079,12 @@ Generate Description HTML,विवरण HTML उत्पन्न करे Generate Material Requests (MRP) and Production Orders.,सामग्री (एमआरपी) के अनुरोध और उत्पादन के आदेश उत्पन्न. Generate Salary Slips,वेतन स्लिप्स उत्पन्न Generate Schedule,कार्यक्रम तय करें उत्पन्न -"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","दिया जा संकुल के लिए निकल जाता है पैकिंग उत्पन्न करता है. पैकेज संख्या, पैकेज सामग्री और अपने वजन को सूचित करने के लिए किया जाता है." Generates HTML to include selected image in the description,विवरण में चयनित छवि को शामिल करने के लिए HTML उत्पन्न +Get,जाना Get Advances Paid,भुगतान किए गए अग्रिम जाओ Get Advances Received,अग्रिम प्राप्त Get Current Stock,मौजूदा स्टॉक +Get From ,से प्राप्त करें Get Items,आइटम पाने के लिए Get Items From Sales Orders,विक्रय आदेश से आइटम प्राप्त करें Get Items from BOM,बीओएम से आइटम प्राप्त @@ -1041,11 +1098,11 @@ Get Template,टेम्पलेट जाओ Get Terms and Conditions,नियम और शर्तें Get Weekly Off Dates,साप्ताहिक ऑफ तिथियां "Get valuation rate and available stock at source/target warehouse on mentioned posting date-time. If serialized item, please press this button after entering serial nos.","मूल्यांकन और स्रोत / लक्ष्य पर गोदाम में उपलब्ध स्टाक दर दिनांक - समय पोस्टिंग का उल्लेख किया. यदि आइटम serialized, धारावाहिक नग में प्रवेश करने के बाद इस बटन को दबाएं." -GitHub Issues,GitHub मुद्दे Global Defaults,वैश्विक मूलभूत -Global Settings / Default Values,वैश्विक सेटिंग्स / डिफ़ॉल्ट मान -Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts),उपयुक्त समूह (निधि > चालू परिसंपत्तियों का आमतौर पर अनुप्रयोग > बैंक खातों ) पर जाएँ -Go to the appropriate group (usually Source of Funds > Current Liabilities > Taxes and Duties),उपयुक्त समूह (निधि का आमतौर पर स्रोत > वर्तमान देयताएं > करों और शुल्कों ) पर जाएँ +Global POS Setting {0} already created for company {1},वैश्विक स्थिति निर्धारण {0} पहले से ही के लिए बनाई गई कंपनी {1} +Global Settings,वैश्विक सेटिंग्स +"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account Ledger (by clicking on Add Child) of type ""Bank""","उपयुक्त समूह (निधि का आमतौर पर अनुप्रयोग > वर्तमान संपत्तियाँ > बैंक खातों पर जाएं और "" बैंक "" प्रकार का चाइल्ड जोड़ने पर क्लिक करके एक नया खाता लेजर ( ) बना" +"Go to the appropriate group (usually Source of Funds > Current Liabilities > Taxes and Duties and create a new Account Ledger (by clicking on Add Child) of type ""Tax"" and do mention the Tax rate.","उपयुक्त समूह (निधि का आमतौर पर स्रोत > वर्तमान देयताएं > करों और शुल्कों में जाओ और प्रकार "" टैक्स"" की खाता बही ( पर क्लिक करके चाइल्ड जोड़ने ) एक नया खाता बनाने और कर की दर का उल्लेख है." Goal,लक्ष्य Goals,लक्ष्य Goods received from Suppliers.,माल आपूर्तिकर्ता से प्राप्त किया. @@ -1056,6 +1113,8 @@ Graduate,परिवर्धित Grand Total,महायोग Grand Total (Company Currency),महायोग (कंपनी मुद्रा) Gratuity LIC ID,उपदान एलआईसी ID +Greater or equals,ग्रेटर या बराबर होती है +Greater than,इससे बड़ा "Grid ""","ग्रिड """ Gross Margin %,सकल मार्जिन% Gross Margin Value,सकल मार्जिन मूल्य @@ -1066,9 +1125,11 @@ Gross Profit (%),सकल लाभ (%) Gross Weight,सकल भार Gross Weight UOM,सकल वजन UOM Group,समूह +"Group Added, refreshing...","समूह जोड़ा गया , ताजगी ..." +Group by Account,खाता द्वारा समूह +Group by Voucher,वाउचर द्वारा समूह Group or Ledger,समूह या लेजर Groups,समूह -HR,मानव संसाधन HR Settings,मानव संसाधन सेटिंग्स HTML / Banner that will show on the top of product list.,HTML बैनर / कि उत्पाद सूची के शीर्ष पर दिखाई देगा. Half Day,आधे दिन @@ -1079,7 +1140,6 @@ Has Batch No,बैच है नहीं Has Child Node,बाल नोड है Has Serial No,नहीं सीरियल गया है Header,हैडर -Heads (or groups) against which Accounting Entries are made and balances are maintained.,(या समूह) प्रमुखों के खिलाफ जो लेखा प्रविष्टियां बना रहे हैं और शेष राशि बनाए रखा जाता है. Health Concerns,स्वास्थ्य चिंताएं Health Details,स्वास्थ्य विवरण Held On,पर Held @@ -1088,14 +1148,15 @@ Help HTML,HTML मदद "Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","मदद:. प्रणाली में एक और रिकॉर्ड करने के लिए लिंक करने के लिए, "# प्रपत्र / नोट / [नोट नाम]" लिंक यूआरएल के रूप में उपयोग ("Http://" का उपयोग नहीं करते हैं)" "Here you can maintain family details like name and occupation of parent, spouse and children","यहाँ आप परिवार और माता - पिता, पति या पत्नी और बच्चों के नाम, व्यवसाय की तरह बनाए रख सकते हैं" "Here you can maintain height, weight, allergies, medical concerns etc","यहाँ आप ऊंचाई, वजन, एलर्जी, चिकित्सा चिंताओं आदि बनाए रख सकते हैं" -Hey! All these items have already been invoiced.,अरे! इन सभी मदों पहले से चालान किया गया है. Hide Currency Symbol,मुद्रा प्रतीक छुपाएँ High,उच्च +History,इतिहास History In Company,कंपनी में इतिहास Hold,पकड़ Holiday,छुट्टी Holiday List,अवकाश सूची Holiday List Name,अवकाश सूची नाम +Holiday master.,अवकाश मास्टर . Holidays,छुट्टियां Home,घर Host,मेजबान @@ -1105,16 +1166,7 @@ Hour Rate Labour,घंटो के लिए दर श्रम Hours,घंटे How frequently?,कितनी बार? "How should this currency be formatted? If not set, will use system defaults","इस मुद्रा को कैसे स्वरूपित किया जाना चाहिए? अगर सेट नहीं किया, प्रणाली चूक का उपयोग करेगा" -Human Resource,मानव संसाधन -I,मैं -IDT,IDT -II,द्वितीय -III,III -IN,में -INV,INV -INV/10-11/,INV/10-11 / -ITEM,आइटम -IV,चतुर्थ +Human Resources,मानवीय संसाधन Identification of the package for the delivery (for print),प्रसव के लिए पैकेज की पहचान (प्रिंट के लिए) If Income or Expense,यदि आय या व्यय If Monthly Budget Exceeded,अगर मासिक बजट से अधिक @@ -1124,16 +1176,14 @@ Available in Delivery Note and Sales Order", If Yearly Budget Exceeded,अगर वार्षिक बजट से अधिक हो "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.","अगर चेक्ड उप विधानसभा आइटम के लिए बीओएम कच्चे माल प्राप्त करने के लिए विचार किया जाएगा. अन्यथा, सभी उप विधानसभा वस्तुओं एक कच्चे माल के रूप में इलाज किया जाएगा." "If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","जाँच की, तो कुल नहीं. कार्य दिवस की छुट्टियों में शामिल होगा, और यह प्रति दिन वेतन का मूल्य कम हो जाएगा" -"If checked, an email with an attached HTML format will be added to part of the EMail body as well as attachment. To only send as attachment, uncheck this.","जाँच की है, तो एक संलग्न HTML स्वरूप के साथ एक ईमेल ईमेल शरीर के रूप में अच्छी तरह से लगाव के हिस्से में जोड़ दिया जाएगा. केवल अनुलग्नक के रूप में भेजने के लिए, इस अचयनित." "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount","अगर जाँच की है, कर की राशि के रूप में पहले से ही प्रिंट दर / प्रिंट राशि में शामिल माना जाएगा" +If different than customer address,यदि ग्राहक पते से अलग "If disable, 'Rounded Total' field will not be visible in any transaction","निष्क्रिय कर देते हैं, 'गोल कुल' अगर क्षेत्र किसी भी लेन - देन में दिखाई नहीं देगा" "If enabled, the system will post accounting entries for inventory automatically.","यदि सक्रिय है, प्रणाली स्वतः सूची के लिए लेखांकन प्रविष्टियों के बाद होगा." If more than one package of the same type (for print),यदि एक ही प्रकार के एक से अधिक पैकेज (प्रिंट के लिए) "If no change in either Quantity or Valuation Rate, leave the cell blank.","मात्रा या मूल्यांकन दर में कोई परिवर्तन , सेल खाली छोड़ देते हैं ." -If non standard port (e.g. 587),यदि गैर मानक बंदरगाह (587 जैसे) If not applicable please enter: NA,यदि लागू नहीं दर्ज करें: NA "If not checked, the list will have to be added to each Department where it has to be applied.","अगर जाँच नहीं किया गया है, इस सूची के लिए प्रत्येक विभाग है जहां इसे लागू किया गया है के लिए जोड़ा जा होगा." -"If set, data entry is only allowed for specified users. Else, entry is allowed for all users with requisite permissions.","अगर सेट, डेटा प्रविष्टि केवल निर्दिष्ट उपयोगकर्ताओं के लिए अनुमति दी है. वरना, प्रविष्टि अपेक्षित अनुमति के साथ सभी उपयोगकर्ताओं के लिए अनुमति दी है." "If specified, send the newsletter using this email address","अगर निर्दिष्ट, न्यूज़लेटर भेजने के इस ईमेल पते का उपयोग" "If the account is frozen, entries are allowed to restricted users.","खाता जमे हुए है , तो प्रविष्टियों प्रतिबंधित उपयोगकर्ताओं की अनुमति है." "If this Account represents a Customer, Supplier or Employee, set it here.","अगर यह खाता एक ग्राहक प्रदायक, या कर्मचारी का प्रतिनिधित्व करता है, इसे यहां सेट." @@ -1147,6 +1197,7 @@ If you have Sales Team and Sale Partners (Channel Partners) they can be tagged Enables item Is Manufactured", Ignore,उपेक्षा Ignored: ,उपेक्षित: +"Ignoring Item {0}, because a group exists with the same name!","उपेक्षा कर मद {0} , एक समूह में एक ही नाम के साथ मौजूद है क्योंकि !" Image,छवि Image View,छवि देखें Implementation Partner,कार्यान्वयन साथी @@ -1156,10 +1207,10 @@ Import Failed!,आयात विफल! Import Log,प्रवेश करें आयात Import Successful!,सफल आयात ! Imports,आयात +In,में In Hours,घंटे में In Process,इस प्रक्रिया में In Qty,मात्रा में -In Row,पंक्ति में In Value,मूल्य में In Words,शब्दों में In Words (Company Currency),शब्दों में (कंपनी मुद्रा) @@ -1171,9 +1222,8 @@ In Words will be visible once you save the Purchase Receipt.,शब्दों In Words will be visible once you save the Quotation.,शब्दों में दिखाई हो सकता है एक बार आप उद्धरण बचाने के लिए होगा. In Words will be visible once you save the Sales Invoice.,शब्दों में दिखाई हो सकता है एक बार आप बिक्री चालान बचाने के लिए होगा. In Words will be visible once you save the Sales Order.,शब्दों में दिखाई हो सकता है एक बार तुम बिक्री आदेश को बचाने के लिए होगा. +In response to,के जवाब में Incentives,प्रोत्साहन -Incharge,प्रभारी -Incharge Name,नाम प्रभारी Include holidays in Total no. of Working Days,कुल संख्या में छुट्टियों को शामिल करें. कार्य दिवस की Income / Expense,आय / व्यय Income Account,आय खाता @@ -1181,13 +1231,15 @@ Income Booked,आय में बुक Income Year to Date,आय तिथि वर्ष Income booked for the digest period,आय पचाने अवधि के लिए बुक Incoming,आवक -Incoming / Support Mail Setting,आवक / सहायता मेल सेटिंग Incoming Rate,आवक दर Incoming quality inspection.,इनकमिंग गुणवत्ता निरीक्षण. +Incorrect or Inactive BOM {0} for Item {1} at row {2},गलत या निष्क्रिय बीओएम {0} मद के लिए {1} पंक्ति में {2} Indicates that the package is a part of this delivery,इंगित करता है कि पैकेज इस वितरण का एक हिस्सा है Individual,व्यक्ति Industry,उद्योग Industry Type,उद्योग के प्रकार +Insert Below,नीचे डालें +Insert Row,पंक्ति डालें Inspected By,द्वारा निरीक्षण किया Inspection Criteria,निरीक्षण मानदंड Inspection Required,आवश्यक निरीक्षण @@ -1195,8 +1247,10 @@ Inspection Type,निरीक्षण के प्रकार Installation Date,स्थापना की तारीख Installation Note,स्थापना नोट Installation Note Item,अधिष्ठापन नोट आइटम +Installation Note {0} has already been submitted,स्थापना नोट {0} पहले से ही प्रस्तुत किया गया है Installation Status,स्थापना स्थिति Installation Time,अधिष्ठापन काल +Installation date cannot be before delivery date for Item {0},स्थापना दिनांक मद के लिए डिलीवरी की तारीख से पहले नहीं किया जा सकता {0} Installation record for a Serial No.,एक सीरियल नंबर के लिए स्थापना रिकॉर्ड Installed Qty,स्थापित मात्रा Instructions,निर्देश @@ -1204,29 +1258,32 @@ Integrate incoming support emails to Support Ticket,टिकट सहायत Interested,इच्छुक Internal,आंतरिक Introduction,परिचय -Invalid Delivery Note. Delivery Note should exist and should be in draft state. Please rectify and try again.,अवैध डिलिवरी नोट . डिलिवरी नोट मौजूद होना चाहिए और मसौदा राज्य में होना चाहिए . सुधारने और पुन: प्रयास करें . -Invalid Email Address,अमान्य ईमेल पता -Invalid Leave Approver,अवैध अनुमोदक छोड़ दो +Invalid Barcode or Serial No,अवैध बारकोड या धारावाहिक नहीं +Invalid Email: {0},अवैध ईमेल: {0} +Invalid Filter: {0},अवैध फिल्टर: {0} +Invalid Mail Server. Please rectify and try again.,अमान्य मेल सर्वर. सुधारने और पुन: प्रयास करें . Invalid Master Name,अवैध मास्टर नाम -Invalid quantity specified for item , +Invalid User Name or Support Password. Please rectify and try again.,अमान्य उपयोगकर्ता नाम या समर्थन पारण . सुधारने और पुन: प्रयास करें . +Invalid quantity specified for item {0}. Quantity should be greater than 0.,आइटम के लिए निर्दिष्ट अमान्य मात्रा {0} . मात्रा 0 से अधिक होना चाहिए . Inventory,इनवेंटरी +Inventory & Support,इन्वेंटरी और सहायता Invoice Date,चालान तिथि Invoice Details,चालान विवरण Invoice No,कोई चालान Invoice Period From Date,दिनांक से चालान अवधि +Invoice Period From and Invoice Period To dates mandatory for recurring invoice,चालान आवर्ती के लिए अनिवार्य तिथियों के लिए और चालान काल से चालान अवधि Invoice Period To Date,तिथि करने के लिए चालान अवधि Invoiced Amount (Exculsive Tax),चालान राशि ( Exculsive टैक्स ) Is Active,सक्रिय है Is Advance,अग्रिम है -Is Asset Item,एसेट आइटम है Is Cancelled,क्या Cancelled Is Carry Forward,क्या आगे ले जाना Is Default,डिफ़ॉल्ट है Is Encash,तुड़ाना है +Is Fixed Asset Item,तय परिसंपत्ति मद है Is LWP,LWP है Is Opening,है खोलने Is Opening Entry,एंट्री खोल रहा है -Is PL Account,पीएल खाता है Is POS,स्थिति है Is Primary Contact,प्राथमिक संपर्क Is Purchase Item,खरीद आइटम है @@ -1242,15 +1299,14 @@ Issue Details,अंक विवरण Issued Items Against Production Order,उत्पादन के आदेश के खिलाफ जारी किए गए आइटम It can also be used to create opening stock entries and to fix stock value.,यह भी खोलने स्टॉक प्रविष्टियों को बनाने के लिए और शेयर मूल्य तय करने के लिए इस्तेमाल किया जा सकता है . Item,मद -Item , Item Advanced,आइटम उन्नत Item Barcode,आइटम बारकोड Item Batch Nos,आइटम बैच Nos -Item Classification,आइटम वर्गीकरण Item Code,आइटम कोड -Item Code (item_code) is mandatory because Item naming is not sequential.,आइटम नामकरण अनुक्रमिक नहीं है क्योंकि मद कोड (item_code) अनिवार्य है. Item Code and Warehouse should already exist.,मद कोड और गोदाम पहले से ही मौजूद होना चाहिए . Item Code cannot be changed for Serial No.,मद कोड सीरियल नंबर के लिए बदला नहीं जा सकता +Item Code is mandatory because Item is not automatically numbered,आइटम स्वचालित रूप से गिने नहीं है क्योंकि मद कोड अनिवार्य है +Item Code required at Row No {0},रो नहीं पर आवश्यक मद कोड {0} Item Customer Detail,आइटम ग्राहक विस्तार Item Description,आइटम विवरण Item Desription,आइटम desription @@ -1263,7 +1319,7 @@ Item Image (if not slideshow),छवि (यदि नहीं स्लाइ Item Name,मद का नाम Item Naming By,द्वारा नामकरण आइटम Item Price,मद मूल्य -Item Prices,आइटम मूल्य +Item Prices,आइटम के मूल्य Item Quality Inspection Parameter,आइटम गुणवत्ता निरीक्षण पैरामीटर Item Reorder,आइटम पुनः क्रमित करें Item Serial No,आइटम कोई धारावाहिक @@ -1274,53 +1330,82 @@ Item Supplier Details,आइटम प्रदायक विवरण Item Tax,आइटम टैक्स Item Tax Amount,आइटम कर राशि Item Tax Rate,आइटम कर की दर +Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,आइटम कर पंक्ति {0} प्रकार टैक्स या आय या खर्च या प्रभार्य का खाता होना चाहिए Item Tax1,Tax1 आइटम Item To Manufacture,आइटम करने के लिए निर्माण Item UOM,आइटम UOM Item Website Specification,आइटम वेबसाइट विशिष्टता Item Website Specifications,आइटम वेबसाइट निर्दिष्टीकरण +Item Wise Tax Detail,मद वार कर विस्तार से Item Wise Tax Detail ,मद वार कर विस्तार से -Item classification.,वर्गीकरण आइटम. -Item is neither Sales nor Service Item,आइटम की बिक्री और न ही सेवा आइटम न तो है -"Item must be a purchase item, \ - as it is present in one or many Active BOMs", -Item must have 'Has Serial No' as 'Yes',आइटम है 'हाँ' के रूप में ' धारावाहिक नहीं है' चाहिए +Item is required,आइटम आवश्यक है +Item is updated,आइटम अद्यतन किया जाता है +Item master.,आइटम मास्टर . +"Item must be a purchase item, as it is present in one or many Active BOMs","यह एक या कई सक्रिय BOMs में मौजूद है के रूप में आइटम , एक खरीद मद होना चाहिए" +Item or Warehouse for row {0} does not match Material Request,पंक्ति के लिए आइटम या वेयरहाउस {0} सामग्री अनुरोध मेल नहीं खाता Item table can not be blank,आइटम तालिका खाली नहीं हो सकता Item to be manufactured or repacked,आइटम निर्मित किया जा या repacked +Item valuation updated,आइटम वैल्यूएशन अद्यतन Item will be saved by this name in the data base.,आइटम डाटा बेस में इस नाम से बचाया जाएगा. +Item {0} appears multiple times in Price List {1},आइटम {0} मूल्य सूची में कई बार प्रकट होता है {1} +Item {0} does not exist,आइटम {0} मौजूद नहीं है +Item {0} does not exist in the system or has expired,आइटम {0} सिस्टम में मौजूद नहीं है या समाप्त हो गई है +Item {0} does not exist in {1} {2},आइटम {0} में मौजूद नहीं है {1} {2} +Item {0} has already been returned,आइटम {0} पहले से ही लौटा दिया गया है +Item {0} has been entered multiple times against same operation,आइटम {0} एक ही आपरेशन के खिलाफ कई बार दर्ज किया गया है +Item {0} has been entered multiple times with same description or date,आइटम {0} ही वर्णन या तारीख के साथ कई बार दर्ज किया गया है +Item {0} has been entered multiple times with same description or date or warehouse,आइटम {0} ही वर्णन या दिनांक या गोदाम के साथ कई बार दर्ज किया गया है +Item {0} has been entered twice,आइटम {0} दो बार दर्ज किया गया है +Item {0} has reached its end of life on {1},आइटम {0} पर जीवन के अपने अंत तक पहुँच गया है {1} +Item {0} ignored since it is not a stock item,यह एक शेयर आइटम नहीं है क्योंकि मद {0} को नजरअंदाज कर दिया +Item {0} is cancelled,आइटम {0} को रद्द कर दिया गया है +Item {0} is not Purchase Item,आइटम {0} आइटम खरीद नहीं है +Item {0} is not a serialized Item,आइटम {0} एक धारावाहिक आइटम नहीं है +Item {0} is not a stock Item,आइटम {0} भंडार वस्तु नहीं है +Item {0} is not active or end of life has been reached,आइटम {0} सक्रिय नहीं है या जीवन के अंत तक पहुँच गया है +Item {0} is not setup for Serial Nos. Check Item master,आइटम {0} सीरियल नग चेक आइटम गुरु के लिए सेटअप नहीं है +Item {0} is not setup for Serial Nos. Column must be blank,आइटम {0} सीरियल नग स्तंभ के लिए सेटअप रिक्त होना चाहिए नहीं है +Item {0} must be Sales Item,आइटम {0} बिक्री आइटम होना चाहिए +Item {0} must be Sales or Service Item in {1},आइटम {0} में बिक्री या सेवा आइटम होना चाहिए {1} +Item {0} must be Service Item,आइटम {0} सेवा आइटम होना चाहिए +Item {0} must be a Purchase Item,आइटम {0} एक क्रय मद होना चाहिए +Item {0} must be a Sales Item,आइटम {0} एक बिक्री आइटम होना चाहिए +Item {0} must be a Service Item.,आइटम {0} एक सेवा आइटम होना चाहिए . +Item {0} must be a Sub-contracted Item,आइटम {0} एक उप अनुबंधित आइटम होना चाहिए +Item {0} must be a stock Item,आइटम {0} भंडार वस्तु होना चाहिए +Item {0} must be manufactured or sub-contracted,आइटम {0} निर्मित किया जाना चाहिए या उप अनुबंधित +Item {0} not found,आइटम {0} नहीं मिला +Item {0} with Serial No {1} is already installed,आइटम {0} धारावाहिक नहीं के साथ {1} पहले से ही स्थापित है +Item {0} with same description entered twice,आइटम {0} एक ही विवरण के साथ दो बार दर्ज "Item, Warranty, AMC (Annual Maintenance Contract) details will be automatically fetched when Serial Number is selected.","आइटम, वारंटी, एएमसी विवरण (वार्षिक रखरखाव अनुबंध) होगा स्वतः दिलवाया जब सीरियल नंबर का चयन किया जाता है." -Item-wise Last Purchase Rate,मद वार अंतिम खरीद दर Item-wise Price List Rate,मद वार मूल्य सूची दर Item-wise Purchase History,आइटम के लिहाज से खरीदारी इतिहास -Item-wise Purchase Register,आइटम के लिहाज से खरीद पंजीकरण +Item-wise Purchase Register,आइटम के लिहाज से खरीद पंजीकृत करें Item-wise Sales History,आइटम के लिहाज से बिक्री इतिहास -Item-wise Sales Register,आइटम के लिहाज से बिक्री पंजीकरण +Item-wise Sales Register,आइटम के लिहाज से बिक्री रजिस्टर Items,आइटम Items To Be Requested,अनुरोध किया जा करने के लिए आइटम +Items required,आवश्यक वस्तुओं "Items to be requested which are ""Out of Stock"" considering all warehouses based on projected qty and minimum order qty",अनुमानित मात्रा और न्यूनतम आदेश मात्रा के आधार पर सभी गोदामों पर विचार करने के लिए अनुरोध किया जा आइटम जो "स्टॉक से बाहर कर रहे हैं" Items which do not exist in Item master can also be entered on customer's request,आइटम जो आइटम मास्टर में मौजूद नहीं है ग्राहक के अनुरोध पर भी दर्ज किया जा सकता है Itemwise Discount,Itemwise डिस्काउंट -Itemwise Recommended Reorder Level,Itemwise स्तर Reorder अनुशंसित -JV,जेवी +Itemwise Recommended Reorder Level,Itemwise पुनःक्रमित स्तर की सिफारिश की Job Applicant,नौकरी आवेदक Job Opening,नौकरी खोलने -Job User,नौकरी प्रोफाइल +Job Profile,नौकरी प्रोफाइल Job Title,कार्य शीर्षक -"Job User, qualifications required etc.","नौकरी प्रोफाइल योग्यता, आदि की आवश्यकता" +"Job profile, qualifications required etc.","आवश्यक काम प्रोफ़ाइल , योग्यता आदि" Jobs Email Settings,नौकरियां ईमेल सेटिंग Journal Entries,जर्नल प्रविष्टियां Journal Entry,जर्नल प्रविष्टि Journal Voucher,जर्नल वाउचर Journal Voucher Detail,जर्नल वाउचर विस्तार Journal Voucher Detail No,जर्नल वाउचर विस्तार नहीं -KRA,KRA -"Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ","बिक्री अभियान का ट्रैक रखें. निवेश पर लौटें गेज करने के अभियान से बिक्रीसूत्र, कोटेशन, बिक्री आदेश आदि का ध्यान रखें." +Journal Voucher {0} does not have account {1}.,जर्नल वाउचर {0} खाता नहीं है {1} . +Journal Vouchers {0} are un-linked,जर्नल वाउचर {0} संयुक्त राष्ट्र से जुड़े हुए हैं Keep a track of communication related to this enquiry which will help for future reference.,जांच है जो भविष्य में संदर्भ के लिए मदद करने के लिए संबंधित संचार का ट्रैक रखें. Key Performance Area,परफ़ॉर्मेंस क्षेत्र Key Responsibility Area,कुंजी जिम्मेदारी क्षेत्र -LEAD,सीसा -LEAD/10-11/,LEAD/10-11 / -LEAD/MUMBAI/,सीसा / / मुंबई LR Date,LR तिथि LR No,नहीं LR Label,लेबल @@ -1329,10 +1414,11 @@ Landed Cost Items,आयातित माल की लागत आइटम Landed Cost Purchase Receipt,आयातित माल की लागत खरीद रसीद Landed Cost Purchase Receipts,उतरा लागत खरीद रसीद Landed Cost Wizard,आयातित माल की लागत विज़ार्ड +Landed Cost updated successfully,उतरा लागत सफलतापूर्वक अपडेट Last Name,सरनेम Last Purchase Rate,पिछले खरीद दर +Last updated by,अंतिम अद्यतन Latest,नवीनतम -Latest Updates,ताजा अपडेट Lead,नेतृत्व Lead Details,विवरण लीड Lead Id,लीड ईद @@ -1344,11 +1430,11 @@ Lead Time Date,लीड दिनांक और समय Lead Time Days,लीड समय दिन Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Material Request when you select this item.,लीड समय दिनों दिन जिसके द्वारा इस आइटम अपने गोदाम में उम्मीद है की संख्या है. इस दिन सामग्री के अनुरोध में दिलवाया है जब आप इस मद का चयन करें. Lead Type,प्रकार लीड +Lead must be set if Opportunity is made from Lead,"अवसर नेतृत्व से किया जाता है , तो लीड सेट किया जाना चाहिए" Leave Allocation,आबंटन छोड़ दो Leave Allocation Tool,आबंटन उपकरण छोड़ दो Leave Application,छुट्टी की अर्ज़ी Leave Approver,अनुमोदक छोड़ दो -Leave Approver can be one of,अनुमोदक से एक हो सकता छोड़ दो Leave Approvers,अनुमोदकों छोड़ दो Leave Balance Before Application,आवेदन से पहले शेष छोड़ो Leave Block List,ब्लॉक सूची छोड़ दो @@ -1361,51 +1447,53 @@ Leave Blocked,अवरुद्ध छोड़ दो Leave Control Panel,नियंत्रण कक्ष छोड़ दो Leave Encashed?,भुनाया छोड़ दो? Leave Encashment Amount,नकदीकरण राशि छोड़ दो -Leave Setup,सेटअप छोड़ दो Leave Type,प्रकार छोड़ दो Leave Type Name,प्रकार का नाम छोड़ दो Leave Without Pay,बिना वेतन छुट्टी -Leave allocations.,आवंटन छोड़ दें. Leave application has been approved.,छुट्टी के लिए अर्जी को मंजूरी दे दी गई है. Leave application has been rejected.,छुट्टी के लिए अर्जी को खारिज कर दिया गया है . +Leave approver must be one of {0},छोड़ दो सरकारी गवाह से एक होना चाहिए {0} Leave blank if considered for all branches,रिक्त छोड़ अगर सभी शाखाओं के लिए माना जाता है Leave blank if considered for all departments,रिक्त छोड़ अगर सभी विभागों के लिए विचार Leave blank if considered for all designations,रिक्त छोड़ अगर सभी पदनाम के लिए विचार Leave blank if considered for all employee types,रिक्त छोड़ दो अगर सभी कर्मचारी प्रकार के लिए विचार Leave blank if considered for all grades,रिक्त छोड़ अगर सभी ग्रेड के लिए माना जाता है "Leave can be approved by users with Role, ""Leave Approver""",", "अनुमोदक" छोड़ छोड़ भूमिका के साथ उपयोगकर्ताओं द्वारा अनुमोदित किया जा सकता है" +Leave of type {0} cannot be longer than {1},प्रकार की छुट्टी {0} से बड़ा नहीं हो सकता है {1} +Leaves Allocated Successfully for {0},पत्तियों के लिए सफलतापूर्वक आवंटित {0} +Leaves for type {0} already allocated for Employee {1} for Fiscal Year {0},पत्तियां प्रकार के लिए {0} पहले से ही कर्मचारी के लिए आवंटित {1} वित्त वर्ष के लिए {0} +Leaves must be allocated in multiples of 0.5,पत्तियां 0.5 के गुणकों में आवंटित किया जाना चाहिए Ledger,खाता Ledgers,बहीखाते Left,वाम -Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.,कानूनी संगठन से संबंधित खातों की एक अलग चार्ट के साथ इकाई / सहायक. +Less or equals,कम या बराबर होती है +Less than,से भी कम Letter Head,पत्रशीर्ष +Letter Heads for print templates.,प्रिंट टेम्पलेट्स के लिए पत्र सिर . Level,स्तर Lft,LFT +Like,जैसा +Linked With,के साथ जुड़ा हुआ +List,सूची List a few of your customers. They could be organizations or individuals.,अपने ग्राहकों के कुछ सूची . वे संगठनों या व्यक्तियों हो सकता है. List a few of your suppliers. They could be organizations or individuals.,अपने आपूर्तिकर्ताओं में से कुछ की सूची . वे संगठनों या व्यक्तियों हो सकता है. "List a few products or services you buy from your suppliers or vendors. If these are same as your products, then do not add them.","आप अपने आपूर्तिकर्ताओं या विक्रेताओं से खरीद कुछ उत्पादों या सेवाओं को सूचीबद्ध करें . ये अपने उत्पादों के रूप में वही कर रहे हैं , तो फिर उन्हें जोड़ नहीं है ." List items that form the package.,सूची आइटम है कि पैकेज का फार्म. -List of holidays.,छुट्टियों की सूची. -List of users who can edit a particular Note,एक विशेष नोट संपादित कर सकते हैं जो उपयोगकर्ताओं की सूची List this Item in multiple groups on the website.,कई समूहों में वेबसाइट पर इस मद की सूची. "List your products or services that you sell to your customers. Make sure to check the Item Group, Unit of Measure and other properties when you start.","आप अपने ग्राहकों को बेचते हैं कि अपने उत्पादों या सेवाओं को सूचीबद्ध करें . जब आप शुरू मद समूह , उपाय और अन्य संपत्तियों की यूनिट की जाँच करने के लिए सुनिश्चित करें." "List your tax heads (e.g. VAT, Excise) (upto 3) and their standard rates. This will create a standard template, you can edit and add more later.","अपने कर सिर (3 ) तक (जैसे वैट , उत्पाद शुल्क) और उनके मानक दरों की सूची . यह एक मानक टेम्पलेट बनाने के लिए, आप संपादित करें और अधिक बाद में जोड़ सकते हैं." -Live Chat,लाइव चैट +Loading,लदान +Loading Report,रिपोर्ट लोड हो रहा है Loading...,लोड हो रहा है ... -"Log of Activities performed by users against Tasks that can be used for tracking time, billing.","ट्रैकिंग समय, बिलिंग के लिए इस्तेमाल किया जा सकता है कि कार्य के खिलाफ उपयोगकर्ताओं द्वारा की गई गतिविधियों का प्रवेश." -Login Id,आईडी लॉगिन Login with your new User ID,अपना नया यूजर आईडी के साथ लॉगिन Logo,लोगो Logo and Letter Heads,लोगो और प्रमुखों पत्र +Logout,लॉगआउट Lost,खोया Lost Reason,खोया कारण Low,निम्न Lower Income,कम आय -MIS Control,एमआईएस नियंत्रण -MREQ-,MREQ- MTN Details,एमटीएन विवरण -Mail Password,मेल पासवर्ड -Mail Port,मेल पोर्ट Main Reports,मुख्य रिपोर्ट Maintain Same Rate Throughout Sales Cycle,बिक्री चक्र के दौरान एक ही दर बनाए रखें Maintain same rate throughout purchase cycle,खरीद चक्र के दौरान एक ही दर बनाए रखें @@ -1415,12 +1503,17 @@ Maintenance Details,रखरखाव विवरण Maintenance Schedule,रखरखाव अनुसूची Maintenance Schedule Detail,रखरखाव अनुसूची विवरण Maintenance Schedule Item,रखरखाव अनुसूची आइटम +Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule',रखरखाव अनुसूची सभी मदों के लिए उत्पन्न नहीं है . 'उत्पन्न अनुसूची' पर क्लिक करें +Maintenance Schedule {0} exists against {0},रखरखाव अनुसूची {0} के खिलाफ मौजूद {0} +Maintenance Schedule {0} must be cancelled before cancelling this Sales Order,रखरखाव अनुसूची {0} इस बिक्री आदेश रद्द करने से पहले रद्द कर दिया जाना चाहिए Maintenance Schedules,रखरखाव अनुसूचियों Maintenance Status,रखरखाव स्थिति Maintenance Time,अनुरक्षण काल Maintenance Type,रखरखाव के प्रकार Maintenance Visit,रखरखाव भेंट Maintenance Visit Purpose,रखरखाव भेंट प्रयोजन +Maintenance Visit {0} must be cancelled before cancelling this Sales Order,रखरखाव भेंट {0} इस बिक्री आदेश रद्द करने से पहले रद्द कर दिया जाना चाहिए +Maintenance start date can not be before delivery date for Serial No {0},रखरखाव शुरू करने की तारीख धारावाहिक नहीं के लिए डिलीवरी की तारीख से पहले नहीं किया जा सकता {0} Major/Optional Subjects,मेजर / वैकल्पिक विषय Make , Make Accounting Entry For Every Stock Movement,हर शेयर आंदोलन के लिए लेखा प्रविष्टि बनाओ @@ -1445,15 +1538,20 @@ Make Salary Structure,वेतन संरचना बनाना Make Sales Invoice,बिक्री चालान बनाएं Make Sales Order,बनाओ बिक्री आदेश Make Supplier Quotation,प्रदायक कोटेशन बनाओ +Make a new,एक नया Male,नर -Manage 3rd Party Backups,3 पार्टी बैकअप प्रबंधन +Manage Customer Group Tree.,ग्राहक समूह ट्री प्रबंधन . +Manage Sales Person Tree.,बिक्री व्यक्ति पेड़ की व्यवस्था करें. +Manage Territory Tree.,टेरिटरी ट्री प्रबंधन . Manage cost of operations,संचालन की लागत का प्रबंधन -Manage exchange rates for currency conversion,मुद्रा रूपांतरण के लिए विनिमय दरों प्रबंधन +Mandatory fields required in {0},में आवश्यक अनिवार्य क्षेत्रों {0} +Mandatory filters required:\n,अनिवार्य फिल्टर की आवश्यकता है: \ n "Mandatory if Stock Item is ""Yes"". Also the default warehouse where reserved quantity is set from Sales Order.","अनिवार्य अगर स्टॉक मद "हाँ" है. इसके अलावा आरक्षित मात्रा बिक्री आदेश से सेट किया जाता है, जहां डिफ़ॉल्ट गोदाम." Manufacture against Sales Order,बिक्री आदेश के खिलाफ निर्माण Manufacture/Repack,/ निर्माण Repack Manufactured Qty,निर्मित मात्रा Manufactured quantity will be updated in this warehouse,निर्मित मात्रा इस गोदाम में अद्यतन किया जाएगा +Manufactured quantity {0} cannot be greater than planned quanitity {1},विनिर्मित मात्रा {0} योजना बनाई quanitity से अधिक नहीं हो सकता है {1} Manufacturer,निर्माता Manufacturer Part Number,निर्माता भाग संख्या Manufacturing,विनिर्माण @@ -1464,7 +1562,6 @@ Marital Status,वैवाहिक स्थिति Market Segment,बाजार खंड Married,विवाहित Mass Mailing,मास मेलिंग -Master Data,प्रधान आंकड़ॉ Master Name,मास्टर नाम Master Name is mandatory if account type is Warehouse,खाता प्रकार वेयरहाउस अगर मास्टर नाम अनिवार्य है Master Type,मास्टर प्रकार @@ -1479,23 +1576,27 @@ Material Request Item,सामग्री अनुरोध आइटम Material Request Items,सामग्री अनुरोध आइटम Material Request No,सामग्री अनुरोध नहीं Material Request Type,सामग्री अनुरोध प्रकार +Material Request of maximum {0} can be made for Item {1} against Sales Order {2},अधिकतम की सामग्री अनुरोध {0} मद के लिए {1} के खिलाफ किया जा सकता है बिक्री आदेश {2} Material Request used to make this Stock Entry,इस स्टॉक एंट्री बनाने के लिए इस्तेमाल सामग्री अनुरोध +Material Request {0} is cancelled or stopped,सामग्री अनुरोध {0} को रद्द कर दिया है या बंद कर दिया गया है Material Requests for which Supplier Quotations are not created,"प्रदायक कोटेशन नहीं बनाई गई हैं , जिसके लिए सामग्री अनुरोध" +Material Requests {0} created,सामग्री अनुरोध {0} बनाया Material Requirement,सामग्री की आवश्यकताएँ Material Transfer,सामग्री स्थानांतरण Materials,सामग्री Materials Required (Exploded),माल आवश्यक (विस्फोट) -Max 500 rows only.,केवल अधिकतम 500 पंक्तियाँ. Max Days Leave Allowed,अधिकतम दिन छोड़ने की अनुमति दी Max Discount (%),अधिकतम डिस्काउंट (%) -Max Returnable Qty,अधिकतम वापस करने मात्रा +Max Qty,अधिकतम मात्रा +Maximum allowed credit is {0} days after posting date,अधिकतम स्वीकृत क्रेडिट तारीख पोस्टिंग के बाद {0} दिन है +Maximum {0} rows allowed,अधिकतम {0} पंक्तियों की अनुमति दी +Maxiumm discount for Item {0} is {1}%,आइटम के लिए Maxiumm छूट {0} {1} % है Medium,मध्यम -"Merging is only possible if following \ - properties are same in both records. - Group or Ledger, Debit or Credit, Is PL Account", +"Merging is only possible if following properties are same in both records. Group or Ledger, Report Type, Company","निम्नलिखित गुण दोनों रिकॉर्ड में वही कर रहे हैं , तो इसका मिलान करना ही संभव है . समूह या लेजर, रिपोर्ट प्रकार , कंपनी" Message,संदेश Message Parameter,संदेश पैरामीटर Message Sent,भेजे गए संदेश +Message updated,संदेश अद्यतन Messages,संदेश Messages greater than 160 characters will be split into multiple messages,160 चरित्र से अधिक संदेश कई mesage में split जाएगा Middle Income,मध्य आय @@ -1504,43 +1605,47 @@ Milestone Date,माइलस्टोन तिथि Milestones,मील के पत्थर Milestones will be added as Events in the Calendar,उपलब्धि कैलेंडर में घटनाक्रम के रूप में जोड़ दिया जाएगा Min Order Qty,न्यूनतम आदेश मात्रा +Min Qty,न्यूनतम मात्रा Minimum Order Qty,न्यूनतम आदेश मात्रा Misc Details,विविध विवरण -Miscellaneous,विविध Miscelleneous,Miscelleneous +Missing Values Required,आवश्यक लापता मूल्यों Mobile No,नहीं मोबाइल Mobile No.,मोबाइल नंबर Mode of Payment,भुगतान की रीति Modern,आधुनिक Modified Amount,संशोधित राशि +Modified by,के द्वारा जाँचा गया Monday,सोमवार Month,माह Monthly,मासिक -Monthly Attendance Sheet,मासिक उपस्थिति शीट +Monthly Attendance Sheet,मासिक उपस्थिति पत्रक Monthly Earning & Deduction,मासिक आय और कटौती -Monthly Salary Register,मासिक वेतन पंजीकरण +Monthly Salary Register,मासिक वेतन रेजिस्टर Monthly salary statement.,मासिक वेतन बयान. -Monthly salary template.,मासिक वेतन टेम्पलेट. +More,अधिक More Details,अधिक जानकारी More Info,अधिक जानकारी +Move Down: {0},नीचे ले जाएँ : {0} +Move Up: {0},ऊपर ले जाएँ : {0} Moving Average,चलायमान औसत Moving Average Rate,मूविंग औसत दर Mr,श्री Ms,सुश्री Multiple Item prices.,एकाधिक आइटम कीमतों . -Multiple Price list.,अनेक मूल्य सूची . Must be Whole Number,पूर्ण संख्या होनी चाहिए My Settings,मेरी सेटिंग्स -NL-,NL- Name,नाम Name and Description,नाम और विवरण Name and Employee ID,नाम और कर्मचारी ID Name is required,नाम आवश्यक है -"Name of new Account. Note: Please don't create accounts for Customers and Suppliers,","नए खाते का नाम . नोट : ग्राहकों और आपूर्तिकर्ताओं के लिए खाते नहीं बना करते हैं," +Name not permitted,अनुमति नहीं नाम +"Name of new Account. Note: Please don't create accounts for Customers and Suppliers, they are created automatically from the Customer and Supplier master","नए खाते का नाम . नोट : ग्राहकों और आपूर्तिकर्ताओं के लिए खाते नहीं बना करते हैं, वे ग्राहक और आपूर्तिकर्ता मास्टर से स्वचालित रूप से बनाया जाता है" Name of person or organization that this address belongs to.,कि इस पते पर संबधित व्यक्ति या संगठन का नाम. Name of the Budget Distribution,बजट वितरण के नाम Naming Series,श्रृंखला का नामकरण -Negative balance is not allowed for account ,नकारात्मक शेष खाते के लिए अनुमति नहीं है +Negative Stock Error ({6}) for Item {0} in Warehouse {1} on {2} {3} in {4} {5},नकारात्मक स्टॉक त्रुटि ( {6} ) मद के लिए {0} गोदाम में {1} को {2} {3} में {4} {5} +Negative balance in Batch {0} for Item {1} at Warehouse {2} on {3} {4},बैच में नकारात्मक शेष {0} मद के लिए {1} गोदाम में {2} को {3} {4} Net Pay,शुद्ध वेतन Net Pay (in words) will be visible once you save the Salary Slip.,शुद्ध वेतन (शब्दों में) दिखाई हो सकता है एक बार आप वेतन पर्ची बचाने के लिए होगा. Net Total,शुद्ध जोड़ @@ -1548,7 +1653,7 @@ Net Total (Company Currency),नेट कुल (कंपनी मुद् Net Weight,निवल भार Net Weight UOM,नेट वजन UOM Net Weight of each Item,प्रत्येक आइटम के नेट वजन -Net pay can not be negative,नेट वेतन ऋणात्मक नहीं हो सकता +Net pay cannot be negative,शुद्ध भुगतान नकारात्मक नहीं हो सकता Never,कभी नहीं New,नई New , @@ -1570,85 +1675,118 @@ New Projects,नई परियोजनाएं New Purchase Orders,नई खरीद आदेश New Purchase Receipts,नई खरीद रसीद New Quotations,नई कोटेशन +New Record,नया रिकॉर्ड New Sales Orders,नई बिक्री आदेश -"New Serial No cannot have Warehouse. Warehouse must be \ - set by Stock Entry or Purchase Receipt", +New Serial No cannot have Warehouse. Warehouse must be set by Stock Entry or Purchase Receipt,नया धारावाहिक कोई गोदाम नहीं कर सकते हैं . गोदाम स्टॉक एंट्री या खरीद रसीद द्वारा निर्धारित किया जाना चाहिए New Stock Entries,नई स्टॉक प्रविष्टियां New Stock UOM,नई स्टॉक UOM +New Stock UOM is required,नया स्टॉक UOM आवश्यक है +New Stock UOM must be different from current stock UOM,नया स्टॉक UOM मौजूदा स्टॉक UOM से अलग होना चाहिए New Supplier Quotations,नई प्रदायक कोटेशन New Support Tickets,नया समर्थन टिकट +New UOM must NOT be of type Whole Number,नई UOM प्रकार पूर्ण संख्या का नहीं होना चाहिए New Workplace,नए कार्यस्थल Newsletter,न्यूज़लैटर Newsletter Content,न्यूजलेटर सामग्री Newsletter Status,न्यूज़लैटर स्थिति +Newsletter has already been sent,समाचार पत्र के पहले ही भेज दिया गया है +Newsletters is not allowed for Trial users,न्यूज़लेटर परीक्षण उपयोगकर्ताओं के लिए अनुमति नहीं है "Newsletters to contacts, leads.","संपर्क करने के लिए समाचार पत्र, होता है." -Next Communcation On,अगला कम्युनिकेशन Next Contact By,द्वारा अगले संपर्क Next Contact Date,अगले संपर्क तिथि Next Date,अगली तारीख +Next Record,अगला अभिलेख +Next actions,अगली कार्रवाई Next email will be sent on:,अगले ईमेल पर भेजा जाएगा: No,नहीं -No Action,कोई कार्रवाई नहीं +No Communication tagged with this ,इस के साथ टैग कोई संचार No Customer Accounts found.,कोई ग्राहक खातों पाया . -"No Customer or Supplier Accounts found. Accounts are identified based on \ - 'Master Type' value in account record.", -No Item found with , -No Items to Pack,पैक करने के लिए कोई आइटम नहीं -No Leave Approvers. Please assign 'Leave Approver' Role to atleast one user.,अनुमोदकों छोड़ दो नहीं. आवंटित एक उपयोगकर्ता कम से कम करने के लिए रोल 'अनुमोदक छोड़ दो' कृपया. +No Customer or Supplier Accounts found,कोई ग्राहक या प्रदायक लेखा पाया +No Expense Approvers. Please assign 'Expense Approver' Role to atleast one user,कोई कसर नहीं अनुमोदकों . कम से कम एक उपयोगकर्ता को ' व्यय अनुमोदक ' भूमिका असाइन कृपया +No Item with Barcode {0},बारकोड के साथ कोई आइटम {0} +No Item with Serial No {0},धारावाहिक नहीं के साथ कोई आइटम {0} +No Items to pack,पैक करने के लिए कोई आइटम नहीं +No Leave Approvers. Please assign 'Leave Approver' Role to atleast one user,कोई लीव अनुमोदकों . कम से कम एक उपयोगकर्ता के लिए ' लीव अनुमोदक ' भूमिका असाइन कृपया No Permission,अनुमति नहीं है -No Production Order created.,कोई उत्पादन आदेश बनाया गया. +No Production Orders created,बनाया नहीं उत्पादन के आदेश +No Report Loaded. Please use query-report/[Report Name] to run a report.,कोई रिपोर्ट भरा हुआ है. उपयोग क्वेरी रिपोर्ट / [रिपोर्ट नाम] की एक रिपोर्ट चलाने के लिए कृपया. +No Results,कोई परिणाम नहीं No Supplier Accounts found. Supplier Accounts are identified based on 'Master Type' value in account record.,कोई प्रदायक लेखा पाया . प्रदायक लेखा खाते के रिकॉर्ड में ' मास्टर प्रकार' मूल्य पर आधारित पहचान कर रहे हैं . -No accounting entries for following warehouses,गोदामों निम्नलिखित के लिए कोई लेखा प्रविष्टियों +No accounting entries for the following warehouses,निम्नलिखित गोदामों के लिए कोई लेखा प्रविष्टियों No addresses created,बनाया नहीं पते +No amount allocated,आवंटित राशि नहीं No contacts created,बनाया कोई संपर्क नहीं -No default BOM exists for item: ,कोई डिफ़ॉल्ट बीओएम मद के लिए मौजूद है: +No default BOM exists for Item {0},कोई डिफ़ॉल्ट बीओएम मौजूद मद के लिए {0} +No document selected,चयनित कोई दस्तावेज़ +No employee found,नहीं मिला कर्मचारी No of Requested SMS,अनुरोधित एसएमएस की संख्या No of Sent SMS,भेजे गए एसएमएस की संख्या No of Visits,यात्राओं की संख्या +No one,कोई नहीं +No permission,कोई अनुमति नहीं +No permission to edit,संपादित करने के लिए कोई अनुमति नहीं No record found,कोई रिकॉर्ड पाया +No records tagged.,कोई रिकॉर्ड टैग. No salary slip found for month: ,महीने के लिए नहीं मिला वेतन पर्ची: -Not,नहीं +None,कोई नहीं +None: End of Workflow,कोई नहीं: कार्यप्रवाह समाप्ति Not Active,सक्रिय नहीं Not Applicable,लागू नहीं Not Available,उपलब्ध नहीं Not Billed,नहीं बिल Not Delivered,नहीं वितरित +Not Found,नहीं मिला +Not Linked to any record.,लिंक्ड कोई रिकॉर्ड नहीं है. +Not Permitted,अनुमति नहीं Not Set,सेट नहीं -Not allowed entry in Warehouse,गोदाम में अनुमति नहीं प्रविष्टि +Not Submitted,सबमिट नहीं +Not allowed,अनुमति नहीं +Not allowed to update entries older than {0},से प्रविष्टियां पुराने अद्यतन करने की अनुमति नहीं है {0} +Not authorized to edit frozen Account {0},जमे खाता संपादित करने के लिए अधिकृत नहीं {0} +Not authroized since {0} exceeds limits,{0} सीमा से अधिक के बाद से Authroized नहीं +Not enough permission to see links.,पर्याप्त के लिए लिंक को देखने की अनुमति नहीं है. +Not equals,नहीं के बराबर होती है +Not found,नहीं मिला +Not permitted,अनुमति नहीं Note,नोट Note User,नोट प्रयोक्ता -Note is a free page where users can share documents / notes,"नोट उपयोगकर्ताओं दस्तावेजों / नोट्स साझा कर सकते हैं, जहां एक मुक्त पृष्ठ है" -Note:,नोट : "Note: Backups and files are not deleted from Dropbox, you will have to delete them manually.","नोट: बैकअप और फ़ाइलें ड्रॉपबॉक्स से नहीं हटाया जाता है, तो आप स्वयं उन्हें नष्ट करना होगा." "Note: Backups and files are not deleted from Google Drive, you will have to delete them manually.","नोट: बैकअप और फ़ाइलें गूगल ड्राइव से नष्ट नहीं कर रहे हैं, आप स्वयं उन्हें नष्ट करना होगा." Note: Email will not be sent to disabled users,नोट: ईमेल अक्षम उपयोगकर्ताओं के लिए नहीं भेजा जाएगा +Note: Item {0} entered multiple times,नोट : आइटम {0} कई बार प्रवेश किया +Note: Other permission rules may also apply,नोट: अन्य अनुमति के नियम भी लागू हो सकता है +Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified,नोट : भुगतान एंट्री ' नकद या बैंक खाता' निर्दिष्ट नहीं किया गया था के बाद से नहीं बनाया जाएगा +Note: System will not check over-delivery and over-booking for Item {0} as quantity or amount is 0,नोट : सिस्टम मद के लिए वितरण और अधिक से अधिक बुकिंग की जांच नहीं करेगा {0} मात्रा या राशि के रूप में 0 है +Note: There is not enough leave balance for Leave Type {0},नोट : छोड़ किस्म के लिए पर्याप्त छुट्टी संतुलन नहीं है {0} +Note: This Cost Center is a Group. Cannot make accounting entries against groups.,नोट : इस लागत केंद्र एक समूह है . समूहों के खिलाफ लेखांकन प्रविष्टियों नहीं कर सकता. +Note: {0},नोट : {0} Notes,नोट्स Notes:,नोट : Nothing to request,अनुरोध करने के लिए कुछ भी नहीं +Nothing to show,दिखाने के लिए कुछ भी नहीं +Nothing to show for this selection,इस चयन के लिए दिखाने के लिए कुछ भी नहीं Notice (days),सूचना (दिन) Notification Control,अधिसूचना नियंत्रण Notification Email Address,सूचना ईमेल पता +Notify By Email,ईमेल से सूचित Notify by Email on creation of automatic Material Request,स्वचालित सामग्री अनुरोध के निर्माण पर ईमेल द्वारा सूचित करें Number Format,संख्या स्वरूप -O+,O + -O-,O- -OPPT,OPPT Offer Date,प्रस्ताव की तिथि Office,कार्यालय Old Parent,पुरानी माता - पिता -On,पर On Net Total,नेट कुल On Previous Row Amount,पिछली पंक्ति राशि पर On Previous Row Total,पिछली पंक्ति कुल पर +Only Leave Applications with status 'Approved' can be submitted,केवल प्रस्तुत किया जा सकता है 'स्वीकृत' स्थिति के साथ आवेदन छोड़ दो "Only Serial Nos with status ""Available"" can be delivered.","स्थिति के साथ ही सीरियल नं ""उपलब्ध"" दिया जा सकता है ." -Only Stock Items are allowed for Stock Entry,केवल स्टॉक आइटम स्टॉक एंट्री के लिए अनुमति दी जाती है Only leaf nodes are allowed in transaction,केवल पत्ता नोड्स के लेनदेन में की अनुमति दी जाती है +Only the selected Leave Approver can submit this Leave Application,केवल चयनित लीव अनुमोदक इस छुट्टी के लिए अर्जी प्रस्तुत कर सकते हैं Open,खुला Open Production Orders,ओपन उत्पादन के आदेश Open Tickets,ओपन टिकट -Opening,उद्घाटन -Opening Accounting Entries,लेखांकन प्रविष्टियों खुलने -Opening Accounts and Stock,खुलने का लेखा और स्टॉक +Open source ERP built for the web,वेब के लिए बनाया खुला स्रोत ईआरपी +Opening (Cr),उद्घाटन (सीआर ) +Opening (Dr),उद्घाटन ( डॉ. ) Opening Date,तिथि खुलने की Opening Entry,एंट्री खुलने Opening Qty,खुलने मात्रा @@ -1659,6 +1797,8 @@ Operating Cost,संचालन लागत Operation Description,ऑपरेशन विवरण Operation No,कोई ऑपरेशन Operation Time (mins),आपरेशन समय (मिनट) +Operation {0} is repeated in Operations Table,ऑपरेशन {0} ऑपरेशन टेबल में दोहराया है +Operation {0} not present in Operations Table,ऑपरेशन टेबल में ऑपरेशन {0} मौजूद नहीं Operations,संचालन Opportunity,अवसर Opportunity Date,अवसर तिथि @@ -1668,7 +1808,9 @@ Opportunity Items,अवसर आइटम Opportunity Lost,मौका खो दिया Opportunity Type,अवसर प्रकार Optional. This setting will be used to filter in various transactions.,वैकल्पिक . यह सेटिंग विभिन्न लेनदेन में फिल्टर करने के लिए इस्तेमाल किया जाएगा . +Or Created By,या द्वारा बनाया गया Order Type,आदेश प्रकार +Order Type must be one of {1},आदेश प्रकार का होना चाहिए {1} Ordered,आदेशित Ordered Items To Be Billed,हिसाब से बिलिंग किए आइटम Ordered Items To Be Delivered,हिसाब से दिया जा आइटम @@ -1676,9 +1818,11 @@ Ordered Qty,मात्रा का आदेश दिया "Ordered Qty: Quantity ordered for purchase, but not received.","मात्रा का आदेश दिया: मात्रा में खरीद के लिए आदेश दिया है , लेकिन प्राप्त नहीं ." Ordered Quantity,आदेशित मात्रा Orders released for production.,उत्पादन के लिए आदेश जारी किया. -Organization,संगठन Organization Name,संगठन का नाम -Organization User,संगठन प्रोफाइल +Organization Profile,संगठन प्रोफाइल +Organization branch master.,संगठन शाखा मास्टर . +Organization unit (department) master.,संगठन इकाई ( विभाग ) मास्टर . +Original Message,मूल संदेश Other,अन्य Other Details,अन्य विवरण Out Qty,मात्रा बाहर @@ -1686,24 +1830,18 @@ Out Value,मूल्य बाहर Out of AMC,एएमसी के बाहर Out of Warranty,वारंटी के बाहर Outgoing,बाहर जाने वाला -Outgoing Email Settings,निवर्तमान ईमेल सेटिंग्स -Outgoing Mail Server,जावक मेल सर्वर -Outgoing Mails,जावक मेल Outstanding Amount,बकाया राशि -Outstanding for Voucher ,वाउचर के लिए बकाया +Outstanding for {0} cannot be less than zero ({1}),बकाया {0} शून्य से भी कम नहीं किया जा सकता है के लिए ({1}) Overhead,उपरि Overheads,ओवरहेड्स -Overlapping Conditions found between,ओवरलैपिंग स्थितियां बीच पाया +Overlapping conditions found between:,बीच पाया ओवरलैपिंग की स्थिति : Overview,अवलोकन Owned,स्वामित्व Owner,स्वामी PAN Number,पैन नंबर PF No.,पीएफ सं. PF Number,पीएफ संख्या -PI/2011/,PI/2011 / -PIN,पिन PL or BS,पी एल या बी एस -PO,पीओ PO Date,पीओ तिथि PO No,पीओ नहीं POP3 Mail Server,POP3 मेल सर्वर @@ -1711,26 +1849,27 @@ POP3 Mail Settings,POP3 मेल सेटिंग्स POP3 mail server (e.g. pop.gmail.com),POP3 मेल सर्वर (जैसे pop.gmail.com) POP3 server e.g. (pop.gmail.com),POP3 सर्वर जैसे (pop.gmail.com) POS Setting,स्थिति सेटिंग +POS Setting required to make POS Entry,पीओएस एंट्री बनाने के लिए आवश्यक स्थिति निर्धारण +POS Setting {0} already created for user: {1} and company {2},पीओएस स्थापना {0} पहले से ही उपयोगकर्ता के लिए बनाया : {1} और कंपनी {2} POS View,स्थिति देखें PR Detail,पीआर विस्तार PR Posting Date,पीआर पोस्ट दिनांक -PRO,प्रो -PS,पुनश्च Package Item Details,संकुल आइटम विवरण Package Items,पैकेज आइटम Package Weight Details,पैकेज वजन विवरण Packed Item,डिलिवरी नोट पैकिंग आइटम +Packed quantity must equal quantity for Item {0} in row {1},{0} पंक्ति में {1} पैक्ड मात्रा आइटम के लिए मात्रा के बराबर होना चाहिए Packing Details,पैकिंग विवरण -Packing Detials,पैकिंग detials Packing List,सूची पैकिंग Packing Slip,पर्ची पैकिंग Packing Slip Item,पैकिंग स्लिप आइटम Packing Slip Items,पैकिंग स्लिप आइटम -Packing Slip(s) Cancelled,पैकिंग स्लिप (ओं) रद्द +Packing Slip(s) cancelled,पैकिंग पर्ची (ओं ) को रद्द कर दिया Page Break,पृष्ठातर Page Name,पेज का नाम -Paid,प्रदत्त +Page not found,पृष्ठ नहीं मिला Paid Amount,राशि भुगतान +Paid amount + Write Off Amount can not be greater than Grand Total,भुगतान की गई राशि + राशि से लिखने के कुल योग से बड़ा नहीं हो सकता Parameter,प्राचल Parent Account,खाते के जनक Parent Cost Center,माता - पिता लागत केंद्र @@ -1738,32 +1877,36 @@ Parent Customer Group,माता - पिता ग्राहक समू Parent Detail docname,माता - पिता विस्तार docname Parent Item,मूल आइटम Parent Item Group,माता - पिता आइटम समूह +Parent Item {0} must be not Stock Item and must be a Sales Item,मूल आइटम {0} भंडार वस्तु नहीं होना चाहिए और एक बिक्री आइटम होना चाहिए +Parent Party Type,पिता पार्टी के प्रकार Parent Sales Person,माता - पिता बिक्री व्यक्ति Parent Territory,माता - पिता टेरिटरी +Parent Website Page,जनक वेबसाइट पृष्ठ +Parent Website Route,जनक वेबसाइट ट्रेन +Parent account can not be a ledger,माता पिता के खाते एक खाता नहीं हो सकता +Parent account does not exist,माता पिता के खाते में मौजूद नहीं है Parenttype,Parenttype -Partially Billed,आंशिक रूप से बिल Partially Completed,आंशिक रूप से पूरा -Partially Delivered,आंशिक रूप से वितरित Partly Billed,आंशिक रूप से बिल Partly Delivered,आंशिक रूप से वितरित Partner Target Detail,साथी लक्ष्य विवरण Partner Type,साथी के प्रकार Partner's Website,साथी की वेबसाइट +Party Type,पार्टी के प्रकार +Party Type Name,पार्टी प्रकार नाम Passive,निष्क्रिय Passport Number,पासपोर्ट नंबर Password,पासवर्ड Pay To / Recd From,/ रिसी डी से भुगतान +Payable,देय Payables,देय Payables Group,देय समूह Payment Days,भुगतान दिन Payment Due Date,भुगतान की नियत तिथि Payment Entries,भुगतान प्रविष्टियां -"Payment Entry has been modified after you pulled it. - Please pull it again.", Payment Period Based On Invoice Date,चालान तिथि के आधार पर भुगतान की अवधि -Payment Reconciliation,भुगतान सुलह Payment Type,भुगतान के प्रकार -Payment of salary for the month: , +Payment of salary for the month {0} and year {1},महीने के वेतन का भुगतान {0} और वर्ष {1} Payment to Invoice Matching Tool,चालान मिलान उपकरण के लिए भुगतान Payment to Invoice Matching Tool Detail,चालान मिलान उपकरण विस्तार करने के लिए भुगतान Payments,भुगतान @@ -1772,111 +1915,153 @@ Payments Received,भुगतान प्राप्त Payments made during the digest period,पचाने की अवधि के दौरान किए गए भुगतान Payments received during the digest period,भुगतान पचाने की अवधि के दौरान प्राप्त Payroll Settings,पेरोल सेटिंग्स -Payroll Setup,पेरोल सेटअप Pending,अपूर्ण Pending Amount,लंबित राशि +Pending Items {0} updated,लंबित आइटम {0} अद्यतन Pending Review,समीक्षा के लिए लंबित Pending SO Items For Purchase Request,खरीद के अनुरोध के लिए लंबित है तो आइटम Percent Complete,पूरा प्रतिशत Percentage Allocation,प्रतिशत आवंटन -Percentage Allocation should be equal to ,प्रतिशत आवंटन के बराबर होना चाहिए +Percentage Allocation should be equal to 100%,प्रतिशत आवंटन 100 % के बराबर होना चाहिए Percentage variation in quantity to be allowed while receiving or delivering this item.,मात्रा में प्रतिशत परिवर्तन प्राप्त करने या इस मद के लिए अनुमति दी गई है. Percentage you are allowed to receive or deliver more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to receive 110 units.,आप मात्रा के खिलाफ और अधिक प्राप्त या वितरित करने के लिए अनुमति दी जाती प्रतिशत का आदेश दिया. उदाहरण के लिए: यदि आप 100 यूनिट का आदेश दिया है. और अपने भत्ता 10% तो आप 110 इकाइयों को प्राप्त करने के लिए अनुमति दी जाती है. Performance appraisal.,प्रदर्शन मूल्यांकन. Period,अवधि Period Closing Voucher,अवधि समापन वाउचर +Period is too short,अवधि कम है Periodicity,आवधिकता Permanent Address,स्थायी पता Permanent Address Is,स्थायी पता है +Permanently Cancel {0}?,स्थायी रूप से {0} रद्द करें? +Permanently Submit {0}?,स्थायी रूप से {0} सबमिट करें ? +Permanently delete {0}?,स्थायी रूप से {0} को हटाने ? Permission,अनुमति -Permission Manager,अनुमति प्रबंधक Personal,व्यक्तिगत Personal Details,व्यक्तिगत विवरण Personal Email,व्यक्तिगत ईमेल Phone,फ़ोन Phone No,कोई फोन -Phone No.,फोन नंबर +Pick Columns,स्तंभ उठाओ Pincode,Pincode Place of Issue,जारी करने की जगह Plan for maintenance visits.,रखरखाव के दौरे के लिए योजना. Planned Qty,नियोजित मात्रा -"Planned Qty: Quantity, for which, Production Order has been raised,","नियोजित मात्रा: मात्रा , जिसके लिए उत्पादन का आदेश उठाया गया है ," +"Planned Qty: Quantity, for which, Production Order has been raised, but is pending to be manufactured.","नियोजित मात्रा: मात्रा , जिसके लिए उत्पादन का आदेश उठाया गया है , लेकिन निर्मित हो लंबित है." Planned Quantity,नियोजित मात्रा Plant,पौधा Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.,संक्षिप्त या लघु नाम ठीक से दर्ज करें सभी खाता प्रमुखों को प्रत्यय के रूप में जोड़ दिया जाएगा. -Please Select Company under which you want to create account head,"आप खाते सिर बनाना चाहते हैं, जिसके तहत कंपनी का चयन कृपया" -Please check,कृपया जाँच करें +Please add expense voucher details,व्यय वाउचर जानकारी जोड़ने के लिए धन्यवाद +Please attach a file first.,पहले एक फ़ाइल संलग्न करें. +Please attach a file or set a URL,एक फ़ाइल संलग्न या एक यूआरएल निर्धारित करें +Please check 'Is Advance' against Account {0} if this is an advance entry.,खाते के विरुद्ध ' अग्रिम है ' की जांच करें {0} यह एक अग्रिम प्रविष्टि है. +Please click on 'Generate Schedule','उत्पन्न अनुसूची' पर क्लिक करें +Please click on 'Generate Schedule' to fetch Serial No added for Item {0},सीरियल मद के लिए जोड़ा लाने के लिए 'उत्पन्न अनुसूची' पर क्लिक करें {0} +Please click on 'Generate Schedule' to get schedule,अनुसूची पाने के लिए 'उत्पन्न अनुसूची' पर क्लिक करें +Please create Customer from Lead {0},लीड से ग्राहक बनाने कृपया {0} +Please create Salary Structure for employee {0},कर्मचारी के लिए वेतन संरचना बनाने कृपया {0} Please create new account from Chart of Accounts.,खातों का चार्ट से नया खाता बनाने के लिए धन्यवाद. Please do NOT create Account (Ledgers) for Customers and Suppliers. They are created directly from the Customer / Supplier masters.,ग्राहकों और आपूर्तिकर्ताओं के लिए खाता ( बहीखाते ) का निर्माण नहीं करते. वे ग्राहक / आपूर्तिकर्ता स्वामी से सीधे बनाया जाता है. +Please enable pop-ups,पॉप अप सक्षम करें +Please enter 'Expected Delivery Date',' उम्मीद की डिलीवरी तिथि ' दर्ज करें +Please enter 'Is Subcontracted' as Yes or No,डालें हाँ या नहीं के रूप में ' subcontracted है ' +Please enter 'Repeat on Day of Month' field value,क्षेत्र मूल्य 'माह के दिवस पर दोहराएँ ' दर्ज करें +Please enter Account Receivable/Payable group in company master,कंपनी मास्टर में खाता प्राप्य / देय समूह दर्ज करें +Please enter Approving Role or Approving User,रोल अनुमोदन या उपयोगकर्ता स्वीकृति दर्ज करें +Please enter BOM for Item {0} at row {1},आइटम के लिए बीओएम दर्ज करें {0} पंक्ति में {1} Please enter Company,कंपनी दाखिल करें Please enter Cost Center,लागत केंद्र दर्ज करें -Please enter Default Unit of Measure,उपाय के डिफ़ॉल्ट यूनिट दर्ज करें Please enter Delivery Note No or Sales Invoice No to proceed,नहीं या बिक्री चालान नहीं आगे बढ़ने के लिए डिलिवरी नोट दर्ज करें Please enter Employee Id of this sales parson,इस बिक्री पादरी के कर्मचारी आईडी दर्ज करें +Please enter Event's Date and Time!,घटना की तिथि और समय दर्ज करें ! Please enter Expense Account,व्यय खाते में प्रवेश करें Please enter Item Code to get batch no,कोई बैच पाने के मद कोड दर्ज करें Please enter Item Code.,मद कोड दर्ज करें. Please enter Item first,पहले आइटम दर्ज करें +Please enter Maintaince Details first,Maintaince विवरण दर्ज करें Please enter Master Name once the account is created.,खाता निर्माण के बाद मास्टर नाम दर्ज करें. +Please enter Planned Qty for Item {0} at row {1},आइटम के लिए योजना बनाई मात्रा दर्ज करें {0} पंक्ति में {1} Please enter Production Item first,पहली उत्पादन मद दर्ज करें Please enter Purchase Receipt No to proceed,आगे बढ़ने के लिए कोई खरीद रसीद दर्ज करें -Please enter Reserved Warehouse for item ,आइटम के लिए आरक्षित गोदाम दर्ज करें +Please enter Reference date,संदर्भ तिथि दर्ज करें Please enter Start Date and End Date,प्रारंभ दिनांक और समाप्ति तिथि दर्ज करें Please enter Warehouse for which Material Request will be raised,"सामग्री अनुरोध उठाया जाएगा , जिसके लिए वेयरहाउस दर्ज करें" -"Please enter account group under which account \ - for warehouse ", +Please enter Write Off Account,खाता बंद लिखने दर्ज करें +Please enter atleast 1 invoice in the table,तालिका में कम से कम 1 चालान दाखिल करें Please enter company first,पहली कंपनी दाखिल करें Please enter company name first,पहले कंपनी का नाम दर्ज करें +Please enter default Unit of Measure,उपाय की मूलभूत इकाई दर्ज करें +Please enter default currency in Company Master,कंपनी मास्टर में डिफ़ॉल्ट मुद्रा दर्ज करें +Please enter email address,ईमेल पता दर्ज करें +Please enter item details,आइटम विवरण दर्ज करें +Please enter message before sending,भेजने से पहले संदेश प्रविष्ट करें +Please enter parent account group for warehouse account,गोदाम खाते के लिए माता पिता के खाते समूह दर्ज करें +Please enter parent cost center,माता - पिता लागत केंद्र दर्ज करें +Please enter quantity for Item {0},आइटम के लिए मात्रा दर्ज करें {0} +Please enter relieving date.,तारीख से राहत दर्ज करें. Please enter sales order in the above table,उपरोक्त तालिका में विक्रय आदेश दर्ज करें +Please enter some text!,कुछ पाठ दर्ज करें! +Please enter title!,शीर्षक दर्ज करें ! +Please enter valid Company Email,वैध कंपनी ईमेल दर्ज करें +Please enter valid Email Id,वैध ईमेल आईडी दर्ज करें +Please enter valid Personal Email,वैध व्यक्तिगत ईमेल दर्ज करें +Please enter valid mobile nos,वैध मोबाइल नंबर दर्ज करें Please install dropbox python module,ड्रॉपबॉक्स अजगर मॉड्यूल स्थापित करें -Please mention default value for ',डिफ़ॉल्ट मान के लिए उल्लेख करें ' -Please reduce qty.,मात्रा कम करें. -Please save the Newsletter before sending.,भेजने से पहले न्यूज़लैटर बचाने. +Please login to Upvote!,Upvote लॉगिन करें ! +Please mention no of visits required,कृपया उल्लेख आवश्यक यात्राओं की कोई +Please pull items from Delivery Note,डिलिवरी नोट से आइटम खींच कृपया +Please save the Newsletter before sending,भेजने से पहले न्यूज़लेटर बचा लो Please save the document before generating maintenance schedule,रखरखाव अनुसूची पैदा करने से पहले दस्तावेज़ को बचाने के लिए धन्यवाद Please select Account first,पहले खाते का चयन करें Please select Bank Account,बैंक खाते का चयन करें Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,का चयन करें कृपया आगे ले जाना है अगर तुम भी शामिल करना चाहते हैं पिछले राजकोषीय वर्ष की शेष राशि इस वित्त वर्ष के लिए छोड़ देता है Please select Category first,प्रथम श्रेणी का चयन करें Please select Charge Type first,प्रभारी प्रकार पहले का चयन करें -Please select Date on which you want to run the report,"आप रिपोर्ट को चलाना चाहते हैं, जिस पर तिथि का चयन करें" +Please select Fiscal Year,वित्तीय वर्ष का चयन करें +Please select Group or Ledger value,समूह या खाता बही मूल्य का चयन करें +Please select Incharge Person's name,प्रभारी व्यक्ति के नाम का चयन करें +"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Sales BOM",""" स्टॉक मद है "" ""नहीं"" है और "" बिक्री आइटम है "" ""हाँ "" है और कोई अन्य बिक्री बीओएम है, जहां आइटम चुनें" Please select Price List,मूल्य सूची का चयन करें -Please select a,कृपया चुनें एक +Please select Start Date and End Date for Item {0},प्रारंभ तिथि और आइटम के लिए अंतिम तिथि का चयन करें {0} Please select a csv file,एक csv फ़ाइल का चयन करें -Please select a service item or change the order type to Sales.,एक सेवा आइटम का चयन करें या बिक्री के क्रम प्रकार में बदलाव करें. -Please select a sub-contracted item or do not sub-contract the transaction.,एक उप अनुबंधित आइटम का चयन करें या उप अनुबंध लेन - देन नहीं कर दीजिये. -Please select a valid csv file with data.,डेटा के साथ एक मान्य csv फ़ाइल का चयन करें. +Please select a valid csv file with data,डेटा के साथ एक मान्य सीएसवी फाइल चुनें +Please select a value for {0} quotation_to {1},के लिए एक मूल्य का चयन करें {0} quotation_to {1} "Please select an ""Image"" first","पहले एक ""छवि "" का चयन करें" +Please select charge type first,पहला आरोप प्रकार का चयन करें +Please select company first.,पहले कंपनी का चयन करें . +Please select item code,आइटम कोड का चयन करें Please select month and year,माह और वर्ष का चयन करें -Please select options and click on Create,विकल्प का चयन करें और बनाएँ पर क्लिक करें +Please select prefix first,पहले उपसर्ग का चयन करें Please select the document type first,पहला दस्तावेज़ प्रकार का चयन करें -Please select: ,कृपया चुनें: -Please set Dropbox access keys in,में ड्रॉपबॉक्स पहुँच कुंजियों को सेट करें -Please set Google Drive access keys in,गूगल ड्राइव पहुंच कुंजी में सेट करें +Please select valid Voucher No to proceed,आगे बढ़ने के लिए वैध वाउचर नहीं का चयन करें +Please select weekly off day,साप्ताहिक छुट्टी के दिन का चयन करें +Please select {0},कृपया चुनें {0} +Please set Dropbox access keys in your site config,आपकी साइट config में ड्रॉपबॉक्स का उपयोग चाबियां सेट करें +Please set Google Drive access keys in {0},में गूगल ड्राइव का उपयोग चाबियां सेट करें {0} +Please set default Cash or Bank account in Mode of Payment {0},भुगतान की विधि में डिफ़ॉल्ट नकद या बैंक खाता सेट करें {0} +Please set default value {0} in Company {0},डिफ़ॉल्ट मान सेट करें {0} कंपनी में {0} +Please set {0},सेट करें {0} Please setup Employee Naming System in Human Resource > HR Settings,मानव संसाधन में सेटअप कर्मचारी नामकरण प्रणाली कृपया> मानव संसाधन सेटिंग्स +Please setup numbering series for Attendance via Setup > Numbering Series,सेटअप > क्रमांकन श्रृंखला के माध्यम से उपस्थिति के लिए धन्यवाद सेटअप नंबरिंग श्रृंखला Please setup your chart of accounts before you start Accounting Entries,आप लेखांकन प्रविष्टियों शुरू होने से पहले सेटअप खातों की चार्ट कृपया Please specify,कृपया बताएं Please specify Company,कंपनी निर्दिष्ट करें Please specify Company to proceed,कंपनी आगे बढ़ने के लिए निर्दिष्ट करें -"Please specify Default Currency in Company Master \ - and Global Defaults", +Please specify Default Currency in Company Master and Global Defaults,कंपनी मास्टर और वैश्विक मूलभूत में डिफ़ॉल्ट मुद्रा निर्दिष्ट करें Please specify a,कृपया बताएं एक -Please specify a Price List which is valid for Territory,राज्य क्षेत्र के लिए मान्य है जो एक मूल्य सूची निर्दिष्ट करें -Please specify a valid,एक वैध निर्दिष्ट करें Please specify a valid 'From Case No.','केस नंबर से' एक वैध निर्दिष्ट करें -Please specify currency in Company,कंपनी में मुद्रा निर्दिष्ट करें +Please specify a valid Row ID for {0} in row {1},पंक्ति में {0} के लिए एक वैध पंक्ति आईडी निर्दिष्ट करें {1} Please submit to update Leave Balance.,लीव शेष अपडेट करने सबमिट करें. -Please write something,कुछ लिखें -Please write something in subject and message!,विषय और संदेश में कुछ लिखने के लिए धन्यवाद ! Plot,भूखंड Plot By,प्लॉट Point of Sale,बिक्री के प्वाइंट Point-of-Sale Setting,प्वाइंट की बिक्री की सेटिंग Post Graduate,स्नातकोत्तर +Post already exists. Cannot add again!,पोस्ट पहले से ही मौजूद है. फिर से नहीं जोड़ सकते हैं! +Post does not exist. Please add post!,डाक मौजूद नहीं है . पोस्ट जोड़ने के लिए धन्यवाद ! Postal,डाक का Posting Date,तिथि पोस्टिंग -Posting Date Time cannot be before,पोस्टिंग दिनांक समय से पहले नहीं किया जा सकता Posting Time,बार पोस्टिंग -Potential Sales Deal,संभावित बिक्री सौदा +Posting timestamp must be after {0},पोस्टिंग टाइमस्टैम्प के बाद होना चाहिए {0} Potential opportunities for selling.,बेचने के लिए संभावित अवसरों. "Precision for Float fields (quantities, discounts, percentages etc). Floats will be rounded up to specified decimals. Default = 3","फ्लोट क्षेत्रों के लिए प्रेसिजन (मात्रा, छूट, प्रतिशत आदि). तैरता निर्दिष्ट दशमलव के लिए गोल किया जाएगा. डिफ़ॉल्ट = 3" Preferred Billing Address,पसंदीदा बिलिंग पता @@ -1885,37 +2070,51 @@ Prefix,उपसर्ग Present,पेश Prevdoc DocType,Prevdoc doctype Prevdoc Doctype,Prevdoc Doctype +Preview,पूर्वावलोकन +Previous Record,पिछला रिकॉर्ड Previous Work Experience,पिछले कार्य अनुभव +Price,कीमत +Price / Discount,मूल्य / डिस्काउंट Price List,कीमत सूची Price List Currency,मूल्य सूची मुद्रा +Price List Currency not selected,मूल्य सूची मुद्रा का चयन नहीं Price List Exchange Rate,मूल्य सूची विनिमय दर -Price List Master,मूल्य सूची मास्टर Price List Name,मूल्य सूची का नाम Price List Rate,मूल्य सूची दर Price List Rate (Company Currency),मूल्य सूची दर (कंपनी मुद्रा) +Price List master.,मूल्य सूची मास्टर . +Price List must be applicable for Buying or Selling,मूल्य सूची खरीदने या बेचने के लिए लागू किया जाना चाहिए +Price List not selected,मूल्य सूची चयनित नहीं +Price List {0} is disabled,मूल्य सूची {0} अक्षम है +Price or Discount,मूल्य या डिस्काउंट +Pricing Rule,मूल्य निर्धारण नियम +Pricing Rule For Discount,मूल्य निर्धारण शासन के लिए सबसे कम +Pricing Rule For Price,मूल्य निर्धारण शासन के लिए मूल्य Print,प्रिंट Print Format Style,प्रिंट प्रारूप शैली Print Heading,शीर्षक प्रिंट Print Without Amount,राशि के बिना प्रिंट -Printing,मुद्रण +Print...,प्रिंट ... +Printing and Branding,मुद्रण और ब्रांडिंग Priority,प्राथमिकता Process Payroll,प्रक्रिया पेरोल Produced,उत्पादित Produced Quantity,उत्पादित मात्रा Product Enquiry,उत्पाद पूछताछ Production Order,उत्पादन का आदेश -Production Order must be submitted,उत्पादन का आदेश प्रस्तुत किया जाना चाहिए -Production Order(s) created:\n\n,उत्पादन का आदेश (ओं ) बनाया : \ n \ n +Production Order status is {0},उत्पादन का आदेश स्थिति है {0} +Production Order {0} must be cancelled before cancelling this Sales Order,उत्पादन का आदेश {0} इस बिक्री आदेश रद्द करने से पहले रद्द कर दिया जाना चाहिए +Production Order {0} must be submitted,उत्पादन का आदेश {0} प्रस्तुत किया जाना चाहिए Production Orders,उत्पादन के आदेश Production Orders in Progress,प्रगति में उत्पादन के आदेश Production Plan Item,उत्पादन योजना मद Production Plan Items,उत्पादन योजना आइटम Production Plan Sales Order,उत्पादन योजना बिक्री आदेश Production Plan Sales Orders,उत्पादन योजना विक्रय आदेश -Production Planning (MRP),उत्पादन योजना (एमआरपी) Production Planning Tool,उत्पादन योजना उपकरण Products or Services You Buy,उत्पाद या आप खरीदें सेवाएँ "Products will be sorted by weight-age in default searches. More the weight-age, higher the product will appear in the list.","उत्पाद डिफ़ॉल्ट खोजों में वजन उम्र के द्वारा हल किया जाएगा. अधिक वजन उम्र, उच्च उत्पाद की सूची में दिखाई देगा." +Profit and Loss,लाभ और हानि Project,परियोजना Project Costing,लागत परियोजना Project Details,परियोजना विवरण @@ -1928,10 +2127,12 @@ Project Value,परियोजना मूल्य Project activity / task.,परियोजना / कार्य कार्य. Project master.,मास्टर परियोजना. Project will get saved and will be searchable with project name given,परियोजना और बच जाएगा परियोजना भी नाम के साथ खोजा होगा -Project wise Stock Tracking,परियोजना वार स्टॉक ट्रैकिंग +Project wise Stock Tracking,परियोजना वार शेयर ट्रैकिंग +Project-wise data is not available for Quotation,परियोजना के लिहाज से डेटा उद्धरण के लिए उपलब्ध नहीं है Projected,प्रक्षेपित Projected Qty,अनुमानित मात्रा Projects,परियोजनाओं +Projects & System,प्रोजेक्ट्स एंड सिस्टम Prompt for Email on Submission of,प्रस्तुत करने पर ईमेल के लिए संकेत Provide email id registered in company,कंपनी में पंजीकृत ईमेल आईडी प्रदान Public,सार्वजनिक @@ -1949,6 +2150,7 @@ Purchase Invoice Advance,चालान अग्रिम खरीद Purchase Invoice Advances,चालान अग्रिम खरीद Purchase Invoice Item,चालान आइटम खरीद Purchase Invoice Trends,चालान रुझान खरीद +Purchase Invoice {0} is already submitted,खरीद चालान {0} पहले से ही प्रस्तुत किया जाता है Purchase Order,आदेश खरीद Purchase Order Date,खरीद आदेश दिनांक Purchase Order Item,खरीद आदेश आइटम @@ -1961,6 +2163,9 @@ Purchase Order Items To Be Received,खरीद आदेश प्राप् Purchase Order Message,खरीद आदेश संदेश Purchase Order Required,खरीदने के लिए आवश्यक आदेश Purchase Order Trends,आदेश रुझान खरीद +Purchase Order number required for Item {0},क्रय आदेश संख्या मद के लिए आवश्यक {0} +Purchase Order {0} is 'Stopped',{0} ' रूका ' है क्रय आदेश +Purchase Order {0} is not submitted,खरीद आदेश {0} प्रस्तुत नहीं किया गया है Purchase Orders given to Suppliers.,खरीद आपूर्तिकर्ताओं के लिए दिए गए आदेश. Purchase Receipt,रसीद खरीद Purchase Receipt Item,रसीद आइटम खरीद @@ -1970,17 +2175,18 @@ Purchase Receipt Items,रसीद वस्तुओं की खरीद Purchase Receipt Message,खरीद रसीद संदेश Purchase Receipt No,रसीद खरीद नहीं Purchase Receipt Required,खरीद रसीद आवश्यक -Purchase Receipt Trends,रसीद रुझान खरीद -Purchase Register,पंजीकरण खरीद +Purchase Receipt Trends,खरीद रसीद रुझान +Purchase Receipt number required for Item {0},आइटम के लिए आवश्यक खरीद रसीद संख्या {0} +Purchase Receipt {0} is not submitted,खरीद रसीद {0} प्रस्तुत नहीं किया गया है +Purchase Register,इन पंजीकृत खरीद Purchase Return,क्रय वापसी Purchase Returned,खरीद वापस आ गए Purchase Taxes and Charges,खरीद कर और शुल्क Purchase Taxes and Charges Master,खरीद कर और शुल्क मास्टर +Purchse Order number required for Item {0},Purchse आदेश संख्या मद के लिए आवश्यक {0} Purpose,उद्देश्य -Purpose must be one of ,उद्देश्य से एक होना चाहिए +Purpose must be one of {0},उद्देश्य से एक होना चाहिए {0} QA Inspection,क्यूए निरीक्षण -QAI/11-12/,QAI/11-12 / -QTN,QTN Qty,मात्रा Qty Consumed Per Unit,मात्रा रूपये प्रति यूनिट की खपत Qty To Manufacture,विनिर्माण मात्रा @@ -1995,15 +2201,19 @@ Quality Inspection,गुणवत्ता निरीक्षण Quality Inspection Parameters,गुणवत्ता निरीक्षण पैरामीटर Quality Inspection Reading,गुणवत्ता निरीक्षण पढ़ना Quality Inspection Readings,गुणवत्ता निरीक्षण रीडिंग +Quality Inspection required for Item {0},आइटम के लिए आवश्यक गुणवत्ता निरीक्षण {0} Quantity,मात्रा Quantity Requested for Purchase,मात्रा में खरीद करने के लिए अनुरोध Quantity and Rate,मात्रा और दर Quantity and Warehouse,मात्रा और वेयरहाउस -Quantity cannot be a fraction.,मात्रा एक अंश नहीं हो सकता. +Quantity cannot be a fraction in row {0},मात्रा पंक्ति में एक अंश नहीं किया जा सकता {0} +Quantity for Item {0} must be less than {1},मात्रा मद के लिए {0} से कम होना चाहिए {1} +Quantity in row {0} ({1}) must be same as manufactured quantity {2},मात्रा पंक्ति में {0} ({1} ) के रूप में ही किया जाना चाहिए निर्मित मात्रा {2} Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,वस्तु की मात्रा विनिर्माण / कच्चे माल की दी गई मात्रा से repacking के बाद प्राप्त -"Quantity should be equal to Manufacturing Quantity. To fetch items again, click on 'Get Items' button or update the Quantity manually.","मात्रा विनिर्माण मात्रा के बराबर होना चाहिए . फिर आइटम लाने , 'प्राप्त वस्तु' बटन पर क्लिक करें या मैन्युअल मात्रा का अद्यतन करें." +Quantity required for Item {0} in row {1},आइटम के लिए आवश्यक मात्रा {0} पंक्ति में {1} Quarter,तिमाही Quarterly,त्रैमासिक +Query Report,क्वेरी रिपोर्ट Quick Help,त्वरित मदद Quotation,उद्धरण Quotation Date,कोटेशन तिथि @@ -2011,10 +2221,10 @@ Quotation Item,कोटेशन आइटम Quotation Items,कोटेशन आइटम Quotation Lost Reason,कोटेशन कारण खोया Quotation Message,कोटेशन संदेश -Quotation Series,कोटेशन सीरीज Quotation To,करने के लिए कोटेशन -Quotation Trend,कोटेशन रुझान -Quotation is cancelled.,कोटेशन रद्द कर दिया है . +Quotation Trends,कोटेशन रुझान +Quotation {0} is cancelled,कोटेशन {0} को रद्द कर दिया गया है +Quotation {0} not of type {1},कोटेशन {0} नहीं प्रकार की {1} Quotations received from Suppliers.,कोटेशन आपूर्तिकर्ता से प्राप्त किया. Quotes to Leads or Customers.,सुराग या ग्राहक के लिए उद्धरण. Raise Material Request when stock reaches re-order level,सामग्री अनुरोध उठाएँ जब शेयर पुनः आदेश के स्तर तक पहुँच @@ -2036,6 +2246,7 @@ Rate at which this tax is applied,दर जिस पर इस कर को Raw Material Item Code,कच्चे माल के मद कोड Raw Materials Supplied,कच्चे माल की आपूर्ति Raw Materials Supplied Cost,कच्चे माल की लागत की आपूर्ति +Raw material cannot be same as main Item,कच्चे माल के मुख्य मद के रूप में ही नहीं हो सकता Re-Order Level,पुन आदेश स्तर Re-Order Qty,पुन आदेश मात्रा Re-order,पुनः आदेश @@ -2057,16 +2268,17 @@ Reason for Leaving,छोड़ने के लिए कारण Reason for Resignation,इस्तीफे का कारण Reason for losing,खोने के लिए कारण Recd Quantity,रिसी डी मात्रा +Receivable,प्राप्य Receivable / Payable account will be identified based on the field Master Type,देय / प्राप्य खाते मैदान मास्टर के प्रकार के आधार पर पहचान की जाएगी Receivables,प्राप्य Receivables / Payables,प्राप्तियों / देय Receivables Group,प्राप्तियों समूह -Received,प्राप्त Received Date,प्राप्त तिथि Received Items To Be Billed,बिल करने के लिए प्राप्त आइटम Received Qty,प्राप्त मात्रा Received and Accepted,प्राप्त और स्वीकृत Receiver List,रिसीवर सूची +Receiver List is empty. Please create Receiver List,पानेवाला सूची खाली है . पानेवाला सूची बनाएं Receiver Parameter,रिसीवर पैरामीटर Recipients,प्राप्तकर्ता Reconciliation Data,सुलह डेटा @@ -2081,11 +2293,13 @@ Reduce Earning for Leave Without Pay (LWP),वेतन (LWP) के बिन Ref Code,रेफरी कोड Ref SQ,रेफरी वर्ग Reference,संदर्भ +Reference #{0} dated {1},संदर्भ # {0} दिनांक {1} Reference Date,संदर्भ तिथि Reference Name,संदर्भ नाम +Reference No & Reference Date is required for {0},संदर्भ कोई और संदर्भ तिथि के लिए आवश्यक है {0} +Reference No is mandatory if you entered Reference Date,"आप संदर्भ तिथि में प्रवेश किया , तो संदर्भ कोई अनिवार्य है" Reference Number,संदर्भ संख्या Refresh,ताज़ा करना -Refreshing....,रिफ्रेशिंग .... Registration Details,पंजीकरण के विवरण Registration Info,पंजीकरण जानकारी Rejected,अस्वीकृत @@ -2095,23 +2309,27 @@ Rejected Warehouse,अस्वीकृत वेअरहाउस Rejected Warehouse is mandatory against regected item,अस्वीकृत वेयरहाउस regected मद के खिलाफ अनिवार्य है Relation,संबंध Relieving Date,तिथि राहत -Relieving Date of employee is ,कर्मचारी की राहत तिथि है +Relieving Date must be greater than Date of Joining,तिथि राहत शामिल होने की तिथि से अधिक होना चाहिए +Reload Page,पृष्ठ पुनः लोड Remark,टिप्पणी Remarks,टिप्पणियाँ +Remove Bookmark,बुकमार्क निकालें Rename,नाम बदलें Rename Log,प्रवेश का नाम बदलें Rename Tool,उपकरण का नाम बदलें +Rename...,नाम बदलें ... Rent Cost,बाइक किराए मूल्य Rent per hour,प्रति घंटे किराए पर Rented,किराये पर Repeat on Day of Month,महीने का दिन पर दोहराएँ Replace,बदलें Replace Item / BOM in all BOMs,सभी BOMs आइटम / BOM बदलें -"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","अन्य सभी BOMs जहां यह प्रयोग किया जाता है में एक विशेष बीओएम बदलें. यह पुराने बीओएम लिंक की जगह, लागत अद्यतन और नया बीओएम के अनुसार "BOM धमाका आइटम" तालिका पुनर्जन्म" Replied,उत्तर +Report,रिपोर्ट Report Date,तिथि रिपोर्ट -Report issues at,रिपोर्ट के मुद्दों पर -Reports,रिपोर्ट +Report Type,टाइप रिपोर्ट +Report Type is mandatory,रिपोर्ट प्रकार अनिवार्य है +Report was not saved (there were errors),रिपोर्ट नहीं बचाया (वहाँ त्रुटियों थे) Reports to,करने के लिए रिपोर्ट Reqd By Date,तिथि reqd Request Type,अनुरोध प्रकार @@ -2137,6 +2355,8 @@ Reserved Quantity,आरक्षित मात्रा Reserved Warehouse,सुरक्षित वेयरहाउस Reserved Warehouse in Sales Order / Finished Goods Warehouse,बिक्री आदेश / तैयार माल गोदाम में सुरक्षित गोदाम Reserved Warehouse is missing in Sales Order,सुरक्षित गोदाम बिक्री आदेश में लापता है +Reserved Warehouse required for stock Item {0} in row {1},शेयर मद के लिए आवश्यक आरक्षित वेयरहाउस {0} पंक्ति में {1} +Reserved warehouse required for stock item {0},शेयर मद के लिए आवश्यक आरक्षित गोदाम {0} Reset Filters,फिल्टर रीसेट Resignation Letter Date,इस्तीफा पत्र दिनांक Resolution,संकल्प @@ -2149,16 +2369,16 @@ Review Date,तिथि की समीक्षा Rgt,RGT Role Allowed to edit frozen stock,जमे हुए शेयर संपादित करने के लिए रख सकते है भूमिका Role that is allowed to submit transactions that exceed credit limits set.,निर्धारित ऋण सीमा से अधिक लेनदेन है कि प्रस्तुत करने की अनुमति दी है कि भूमिका. +Root account can not be deleted,रुट खाता हटाया नहीं जा सकता +Root cannot be edited.,रूट संपादित नहीं किया जा सकता है . Root cannot have a parent cost center,रूट एक माता पिता लागत केंद्र नहीं कर सकते Rounded Total,गोल कुल Rounded Total (Company Currency),गोल कुल (कंपनी मुद्रा) -Row,पंक्ति -Row ,पंक्ति -Row #,# पंक्ति Row # ,# पंक्ति +Rules for adding shipping costs.,शिपिंग लागत को जोड़ने के लिए नियम. +Rules for applying pricing and discount.,मूल्य निर्धारण और छूट लागू करने के लिए नियम. Rules to calculate shipping amount for a sale,एक बिक्री के लिए शिपिंग राशि की गणना करने के नियम S.O. No.,S.O. नहीं. -SMS,एसएमएस SMS Center,एसएमएस केंद्र SMS Control,एसएमएस नियंत्रण SMS Gateway URL,एसएमएस गेटवे URL @@ -2166,18 +2386,9 @@ SMS Log,एसएमएस प्रवेश SMS Parameter,एसएमएस पैरामीटर SMS Sender Name,एसएमएस प्रेषक का नाम SMS Settings,एसएमएस सेटिंग्स -SMTP Server (e.g. smtp.gmail.com),एसएमटीपी सर्वर (जैसे smtp.gmail.com) -SO,अतः SO Date,इतना तिथि SO Pending Qty,तो मात्रा लंबित SO Qty,अतः मात्रा -SO/10-11/,SO/10-11 / -SO1112,SO1112 -SQTN,SQTN -STE,STE -SUP,SUP -SUPP,SUPP -SUPP/10-11/,SUPP/10-11 / Salary,वेतन Salary Information,वेतन की जानकारी Salary Manager,वेतन प्रबंधक @@ -2185,18 +2396,21 @@ Salary Mode,वेतन मोड Salary Slip,वेतनपर्ची Salary Slip Deduction,वेतनपर्ची कटौती Salary Slip Earning,कमाई वेतनपर्ची +Salary Slip of employee {0} already created for this month,कर्मचारी के वेतन पर्ची {0} पहले से ही इस माह के लिए बनाए Salary Structure,वेतन संरचना Salary Structure Deduction,वेतन संरचना कटौती Salary Structure Earning,कमाई वेतन संरचना Salary Structure Earnings,वेतन संरचना आय Salary breakup based on Earning and Deduction.,वेतन गोलमाल अर्जन और कटौती पर आधारित है. Salary components.,वेतन घटकों. +Salary template master.,वेतन टेम्पलेट मास्टर . Sales,विक्रय Sales Analytics,बिक्री विश्लेषिकी Sales BOM,बिक्री बीओएम Sales BOM Help,बिक्री बीओएम मदद Sales BOM Item,बिक्री बीओएम आइटम Sales BOM Items,बिक्री बीओएम आइटम +Sales Browser,बिक्री ब्राउज़र Sales Details,बिक्री विवरण Sales Discounts,बिक्री छूट Sales Email Settings,बिक्री ईमेल सेटिंग @@ -2209,6 +2423,8 @@ Sales Invoice Items,बिक्री चालान आइटम Sales Invoice Message,बिक्री चालान संदेश Sales Invoice No,बिक्री चालान नहीं Sales Invoice Trends,बिक्री चालान रुझान +Sales Invoice {0} has already been submitted,बिक्री चालान {0} पहले से ही प्रस्तुत किया गया है +Sales Invoice {0} must be cancelled before cancelling this Sales Order,बिक्री चालान {0} इस बिक्री आदेश रद्द करने से पहले रद्द कर दिया जाना चाहिए Sales Order,बिक्री आदेश Sales Order Date,बिक्री आदेश दिनांक Sales Order Item,बिक्री आदेश आइटम @@ -2216,15 +2432,18 @@ Sales Order Items,बिक्री आदेश आइटम Sales Order Message,बिक्री आदेश संदेश Sales Order No,बिक्री आदेश नहीं Sales Order Required,बिक्री आदेश आवश्यक -Sales Order Trend,बिक्री आदेश रुझान +Sales Order Trends,बिक्री आदेश रुझान +Sales Order required for Item {0},आइटम के लिए आवश्यक बिक्री आदेश {0} +Sales Order {0} is not submitted,बिक्री आदेश {0} प्रस्तुत नहीं किया गया है +Sales Order {0} is not valid,बिक्री आदेश {0} मान्य नहीं है +Sales Order {0} is stopped,बिक्री आदेश {0} बंद कर दिया गया है Sales Partner,बिक्री साथी Sales Partner Name,बिक्री भागीदार नाम Sales Partner Target,बिक्री साथी लक्ष्य Sales Partners Commission,बिक्री पार्टनर्स आयोग Sales Person,बिक्री व्यक्ति -Sales Person Incharge,बिक्री व्यक्ति इंचार्ज Sales Person Name,बिक्री व्यक्ति का नाम -Sales Person Target Variance (Item Group-Wise),बिक्री व्यक्ति लक्ष्य विचरण (आइटम समूह वार) +Sales Person Target Variance Item Group-Wise,बिक्री व्यक्ति लक्ष्य विचरण मद समूहवार Sales Person Targets,बिक्री व्यक्ति लक्ष्य Sales Person-wise Transaction Summary,बिक्री व्यक्ति के लिहाज गतिविधि सारांश Sales Register,बिक्री रजिस्टर @@ -2236,26 +2455,27 @@ Sales Team,बिक्री टीम Sales Team Details,बिक्री टीम विवरण Sales Team1,Team1 बिक्री Sales and Purchase,बिक्री और खरीद -Sales campaigns,बिक्री अभियान -Sales persons and targets,बिक्री व्यक्तियों और लक्ष्य -Sales taxes template.,बिक्री टेम्पलेट करों. -Sales territories.,बिक्री क्षेत्रों. +Sales campaigns.,बिक्री अभियान . Salutation,अभिवादन -Same Serial No,एक ही सीरियल नहीं Sample Size,नमूने का आकार Sanctioned Amount,स्वीकृत राशि Saturday,शनिवार -Save , +Save,बचाना Schedule,अनुसूची Schedule Date,नियत तिथि Schedule Details,अनुसूची विवरण Scheduled,अनुसूचित +Scheduled Confirmation Date must be greater than Date of Joining,अनुसूचित पुष्टिकरण तिथि शामिल होने की तिथि से अधिक होना चाहिए Scheduled Date,अनुसूचित तिथि +Scheduled to send to {0},करने के लिए भेजने के लिए अनुसूचित {0} +Scheduled to send to {0} recipients,{0} प्राप्तकर्ताओं को भेजने के लिए अनुसूचित +Scheduler Failed Events,समयबद्धक विफल घटनाक्रम School/University,स्कूल / विश्वविद्यालय Score (0-5),कुल (0-5) Score Earned,स्कोर अर्जित Score must be less than or equal to 5,स्कोर से कम या 5 के बराबर होना चाहिए Scrap %,% स्क्रैप +Search,खोजें Seasonality for setting budgets.,बजट की स्थापना के लिए मौसम. "See ""Rate Of Materials Based On"" in Costing Section",धारा लागत में "सामग्री के आधार पर दर" देखें "Select ""Yes"" for sub - contracting items",उप के लिए "हाँ" चुनें आइटम करार @@ -2263,19 +2483,25 @@ Seasonality for setting budgets.,बजट की स्थापना के "Select ""Yes"" if this item represents some work like training, designing, consulting etc.","चुनें यदि इस मद के प्रशिक्षण जैसे कुछ काम करते हैं, डिजाइन, परामर्श आदि का प्रतिनिधित्व करता है "हाँ"" "Select ""Yes"" if you are maintaining stock of this item in your Inventory.","हाँ" अगर आप अपनी सूची में इस मद के शेयर को बनाए रखने रहे हैं. "Select ""Yes"" if you supply raw materials to your supplier to manufacture this item.","हाँ" अगर आप अपने सप्लायर के लिए कच्चे माल की आपूर्ति करने के लिए इस मद के निर्माण. +Select All,सभी का चयन +Select Attachments,किए गए अनुलग्नकों के चयन करें Select Budget Distribution to unevenly distribute targets across months.,बजट वितरण चुनें unevenly महीने भर में लक्ष्य को वितरित करने के लिए. "Select Budget Distribution, if you want to track based on seasonality.","बजट वितरण का चयन करें, यदि आप मौसमी आधार पर ट्रैक करना चाहते हैं." -Select Digest Content,डाइजेस्ट सामग्री का चयन करें Select DocType,Doctype का चयन करें -"Select Item where ""Is Stock Item"" is ""No""",""" स्टॉक मद है "" जहां आइटम का चयन करें ""नहीं""" Select Items,आइटम का चयन करें +Select Print Format,प्रिंट प्रारूप का चयन करें Select Purchase Receipts,क्रय रसीद का चयन करें +Select Report Name,रिपोर्ट नाम का चयन करें Select Sales Orders,विक्रय आदेश का चयन करें Select Sales Orders from which you want to create Production Orders.,विक्रय आदेश का चयन करें जिसमें से आप उत्पादन के आदेश बनाना चाहते. Select Time Logs and Submit to create a new Sales Invoice.,समय लॉग्स का चयन करें और एक नया बिक्री चालान बनाने के लिए भेजें. +Select To Download:,डाउनलोड करने के लिए चयन करें: Select Transaction,लेन - देन का चयन करें +Select Type,प्रकार का चयन करें Select account head of the bank where cheque was deposited.,बैंक के खाते में जहां चेक जमा किया गया था सिर का चयन करें. Select company name first.,कंपनी 1 नाम का चयन करें. +Select dates to create a new ,एक नया बनाने की दिनांक चुने +Select or drag across time slots to create a new event.,का चयन करें या एक नई घटना बनाने के लिए टाइम स्लॉट भर में खींचें. Select template from which you want to get the Goals,जो टेम्पलेट से आप लक्ष्यों को प्राप्त करना चाहते हैं का चयन करें Select the Employee for whom you are creating the Appraisal.,जिसे तुम पैदा कर रहे हैं मूल्यांकन करने के लिए कर्मचारी का चयन करें. Select the Invoice against which you want to allocate payments.,आप भुगतान आवंटित करना चाहते हैं जिसके खिलाफ चालान का चयन करें. @@ -2292,71 +2518,76 @@ Select your home country and check the timezone and currency.,अपने घ Selling,विक्रय Selling Settings,सेटिंग्स बेचना Send,भेजें +Send As Email,ईमेल के रूप में भेजें Send Autoreply,स्वतः भेजें -Send Bulk SMS to Leads / Contacts,सुराग / संपर्क करने के लिए थोक एसएमएस भेजें Send Email,ईमेल भेजें Send From,से भेजें +Send Me A Copy,मुझे एक कॉपी भेज Send Notifications To,करने के लिए सूचनाएं भेजें Send Now,अब भेजें -Send Print in Body and Attachment,शारीरिक और अनुलग्नक में प्रिंट भेजें Send SMS,एसएमएस भेजें Send To,इन्हें भेजें Send To Type,टाइप करने के लिए भेजें -Send automatic emails to Contacts on Submitting transactions.,लेनदेन भेजने पर संपर्क करने के लिए स्वत: ईमेल भेजें. Send mass SMS to your contacts,अपने संपर्कों के लिए बड़े पैमाने पर एसएमएस भेजें -Send regular summary reports via Email.,ईमेल के माध्यम से नियमित रूप से सारांश रिपोर्ट भेजें. Send to this list,इस सूची को भेजें -Sender,प्रेषक Sender Name,प्रेषक का नाम -Sent,भेजे गए -Sent Mail,भेजी गई मेल Sent On,पर भेजा -Sent Quotation,भेजे गए कोटेशन Sent or Received,भेजा या प्राप्त Separate production order will be created for each finished good item.,अलग उत्पादन का आदेश प्रत्येक समाप्त अच्छा आइटम के लिए बनाया जाएगा. Serial No,नहीं सीरियल Serial No / Batch,धारावाहिक नहीं / बैच Serial No Details,धारावाहिक नहीं विवरण -Serial No Service Contract Expiry,सीरियल कोई सेवा अनुबंध समाप्ति -Serial No Status,सीरियल कोई स्थिति -Serial No Warranty Expiry,सीरियल कोई वारंटी समाप्ति -Serial No created,बनाया धारावाहिक नहीं -Serial No does not belong to Item,सीरियल मद से संबंधित नहीं है -Serial No must exist to transfer out.,धारावाहिक नहीं बाहर स्थानांतरित करने के लिए मौजूद होना चाहिए . -Serial No qty cannot be a fraction,धारावाहिक नहीं मात्रा एक अंश नहीं हो सकता -Serial No status must be 'Available' to Deliver,धारावाहिक नहीं स्थिति उद्धार करने के लिए 'उपलब्ध ' होना चाहिए -Serial Nos do not match with qty,सीरियल नं मात्रा के साथ मेल नहीं खाते +Serial No Service Contract Expiry,धारावाहिक नहीं सेवा अनुबंध समाप्ति +Serial No Status,धारावाहिक नहीं स्थिति +Serial No Warranty Expiry,धारावाहिक नहीं वारंटी समाप्ति +Serial No is mandatory for Item {0},सीरियल मद के लिए अनिवार्य है {0} +Serial No {0} created,धारावाहिक नहीं {0} बनाया +Serial No {0} does not belong to Delivery Note {1},धारावाहिक नहीं {0} डिलिवरी नोट से संबंधित नहीं है {1} +Serial No {0} does not belong to Item {1},धारावाहिक नहीं {0} मद से संबंधित नहीं है {1} +Serial No {0} does not belong to Warehouse {1},धारावाहिक नहीं {0} वेयरहाउस से संबंधित नहीं है {1} +Serial No {0} does not exist,धारावाहिक नहीं {0} मौजूद नहीं है +Serial No {0} has already been received,धारावाहिक नहीं {0} पहले से ही प्राप्त हो गया है +Serial No {0} is under maintenance contract upto {1},धारावाहिक नहीं {0} तक रखरखाव अनुबंध के तहत है {1} +Serial No {0} is under warranty upto {1},धारावाहिक नहीं {0} तक वारंटी के अंतर्गत है {1} +Serial No {0} not in stock,धारावाहिक नहीं {0} नहीं स्टॉक में +Serial No {0} quantity {1} cannot be a fraction,धारावाहिक नहीं {0} मात्रा {1} एक अंश नहीं हो सकता +Serial No {0} status must be 'Available' to Deliver,धारावाहिक नहीं {0} स्थिति उद्धार करने के लिए 'उपलब्ध ' होना चाहिए +Serial Nos Required for Serialized Item {0},श्रृंखलाबद्ध मद के लिए सीरियल नं आवश्यक {0} Serial Number Series,सीरियल नंबर सीरीज -Serialized Item: ',श्रृंखलाबद्ध आइटम: ' +Serial number {0} entered more than once,सीरियल नंबर {0} एक बार से अधिक दर्ज किया +Serialized Item {0} cannot be updated using Stock Reconciliation,श्रृंखलाबद्ध मद {0} शेयर सुलह का उपयोग अद्यतन नहीं किया जा सकता है Series,कई Series List for this Transaction,इस लेन - देन के लिए सीरीज सूची +Series Updated,सीरीज नवीनीकृत +Series Updated Successfully,सीरीज सफलतापूर्वक अपडेट +Series is mandatory,सीरीज अनिवार्य है +Series {0} already used in {1},सीरीज {0} पहले से ही प्रयोग किया जाता में {1} Service Address,सेवा पता Services,सेवाएं +Session Expired. Logging you out,सत्र समाप्त हो गया. आप लॉग आउट Session Expiry,सत्र समाप्ति Session Expiry in Hours e.g. 06:00,घंटे में सत्र समाप्ति जैसे 06:00 +Session Expiry must be in format {0},सत्र समाप्ति प्रारूप में होना चाहिए {0} Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,इस क्षेत्र पर आइटम ग्रुप - वाईस बजट निर्धारित करें. तुम भी वितरण की स्थापना द्वारा मौसमी शामिल कर सकते हैं. -Set Login and Password if authentication is required.,लॉगिन और पासवर्ड सेट अगर प्रमाणीकरण की आवश्यकता है. +Set Link,सेट लिंक Set allocated amount against each Payment Entry and click 'Allocate'.,सेट प्रत्येक भुगतान प्रवेश के खिलाफ राशि आवंटित की है और ' आवंटित ' पर क्लिक करें . Set as Default,डिफ़ॉल्ट रूप में सेट करें Set as Lost,खोया के रूप में सेट करें Set prefix for numbering series on your transactions,अपने लेनदेन पर श्रृंखला नंबरिंग के लिए उपसर्ग सेट Set targets Item Group-wise for this Sales Person.,सेट आइटम इस बिक्री व्यक्ति के लिए समूह - वार लक्ष्य. -"Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.","अपने निवर्तमान मेल SMTP सेटिंग्स यहाँ सेट. सभी प्रणाली सूचनाएं उत्पन्न, ईमेल इस मेल सर्वर से जाना जाएगा. यदि आप सुनिश्चित नहीं कर रहे हैं, इस लिए ERPNext सर्वर (ईमेल अभी भी अपनी ईमेल आईडी से भेजा जाएगा) का उपयोग करने के लिए या अपने ईमेल प्रदाता से संपर्क करने के लिए खाली छोड़ दें." +"Set the Date & Number Formats, Default Currency, Current Fiscal Year, etc.","आदि तिथि और संख्या स्वरूप , डिफ़ॉल्ट मुद्रा , चालू वित्त वर्ष , सेट करें" Setting Account Type helps in selecting this Account in transactions.,की स्थापना खाता प्रकार के लेनदेन में इस खाते का चयन करने में मदद करता है. Setting up...,स्थापना ... -Settings,सेटिंग्स -Settings for Accounts,लेखा के लिए सेटिंग्स -Settings for Buying Module,मॉड्यूल खरीदने के लिए सेटिंग्स -Settings for Selling Module,मॉड्यूल बेचने के लिए सेटिंग्स -Settings for Stock Module,स्टॉक मॉड्यूल के लिए सेटिंग्स +Settings for HR Module,मानव संसाधन मॉड्यूल के लिए सेटिंग्स "Settings to extract Job Applicants from a mailbox e.g. ""jobs@example.com""",एक मेलबॉक्स जैसे "jobs@example.com से नौकरी के आवेदकों को निकालने सेटिंग्स Setup,व्यवस्था Setup Already Complete!!,सेटअप पहले से ही पूरा ! Setup Complete!,सेटअप पूरा हुआ! -Setup Completed,सेटअप पूरा Setup Series,सेटअप सीरीज -Setup of Shopping Cart.,शॉपिंग कार्ट का सेटअप. -Setup to pull emails from support email account,समर्थन ईमेल खाते से ईमेल खींचने सेटअप +Setup Wizard,सेटअप विज़ार्ड +Setup incoming server for jobs email id. (e.g. jobs@example.com),जॉब ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे jobs@example.com ) +Setup incoming server for sales email id. (e.g. sales@example.com),बिक्री ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे sales@example.com ) +Setup incoming server for support email id. (e.g. support@example.com),समर्थन ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे support@example.com ) Share,शेयर Share With,के साथ शेयर करें Shipments to customers.,ग्राहकों के लिए लदान. @@ -2368,114 +2599,65 @@ Shipping Rule,नौवहन नियम Shipping Rule Condition,नौवहन नियम हालत Shipping Rule Conditions,नौवहन नियम शर्तें Shipping Rule Label,नौवहन नियम लेबल -Shipping Rules,नौवहन नियम Shop,दुकान Shopping Cart,खरीदारी की टोकरी -Shopping Cart Price List,शॉपिंग कार्ट मूल्य सूची -Shopping Cart Price Lists,शॉपिंग कार्ट मूल्य सूचियां -Shopping Cart Settings,शॉपिंग कार्ट सेटिंग्स -Shopping Cart Shipping Rule,शॉपिंग कार्ट नौवहन नियम -Shopping Cart Shipping Rules,शॉपिंग कार्ट नौवहन नियम -Shopping Cart Taxes and Charges Master,शॉपिंग कार्ट में करों और शुल्कों मास्टर -Shopping Cart Taxes and Charges Masters,शॉपिंग कार्ट में करों और शुल्कों मास्टर्स Short biography for website and other publications.,वेबसाइट और अन्य प्रकाशनों के लिए लघु जीवनी. +Shortcut,शॉर्टकट "Show ""In Stock"" or ""Not in Stock"" based on stock available in this warehouse.",स्टॉक में दिखाएँ "" या "नहीं" स्टॉक में इस गोदाम में उपलब्ध स्टॉक के आधार पर. -Show / Hide Features,दिखाएँ / छिपाएँ सुविधाएँ -Show / Hide Modules,दिखाएँ / छिपाएँ मॉड्यूल +"Show / Hide features like Serial Nos, POS etc.","आदि सीरियल ओपन स्कूल , स्थिति की तरह दिखाएँ / छिपाएँ सुविधाओं" +Show Details,विवरण दिखाएं Show In Website,वेबसाइट में दिखाएँ +Show Tags,दिखाएँ टैग Show a slideshow at the top of the page,पृष्ठ के शीर्ष पर एक स्लाइड शो दिखाएँ Show in Website,वेबसाइट में दिखाने +Show rows with zero values,शून्य मान के साथ पंक्तियों दिखाएं Show this slideshow at the top of the page,पृष्ठ के शीर्ष पर इस स्लाइड शो दिखाएँ +Showing only for (if not empty),के लिए ही दिखा रहा है ( नहीं तो खाली ) Signature,हस्ताक्षर Signature to be appended at the end of every email,हर ईमेल के अंत में संलग्न किया हस्ताक्षर Single,एक Single unit of an Item.,एक आइटम के एकल इकाई. Sit tight while your system is being setup. This may take a few moments.,"आपके सिस्टम सेटअप किया जा रहा है , जबकि ठीक से बैठो . इसमें कुछ समय लग सकता है." Slideshow,स्लाइड शो -"Sorry! You cannot change company's default currency, because there are existing transactions against it. You will need to cancel those transactions if you want to change the default currency.","क्षमा करें! इसके खिलाफ मौजूदा लेनदेन कर रहे हैं, क्योंकि आप कंपनी की डिफ़ॉल्ट मुद्रा बदल नहीं सकते. आप डिफ़ॉल्ट मुद्रा में परिवर्तन करना चाहते हैं तो आप उन लेनदेन को रद्द करने की आवश्यकता होगी." +Sorry we were unable to find what you were looking for.,खेद है कि हम खोजने के लिए आप क्या देख रहे थे करने में असमर्थ थे. +Sorry you are not permitted to view this page.,खेद है कि आपको इस पृष्ठ को देखने की अनुमति नहीं है. "Sorry, Serial Nos cannot be merged","क्षमा करें, सीरियल नं विलय हो नहीं सकता" "Sorry, companies cannot be merged","क्षमा करें, कंपनियों का विलय कर दिया नहीं किया जा सकता" +Sort By,द्वारा क्रमबद्ध करें Source,स्रोत +Source File,स्रोत फ़ाइल Source Warehouse,स्रोत वेअरहाउस -Source and Target Warehouse cannot be same,स्रोत और लक्ष्य वेअरहाउस समान नहीं हो सकते +Source and target warehouse cannot be same for row {0},स्रोत और लक्ष्य गोदाम पंक्ति के लिए समान नहीं हो सकता {0} +Source warehouse is mandatory for row {0},स्रोत गोदाम पंक्ति के लिए अनिवार्य है {0} Spartan,संयमी -Special Characters,विशेष अक्षर -Special Characters , +"Special Characters except ""-"" and ""/"" not allowed in naming series","सिवाय विशेष अक्षर ""-"" और ""/"" श्रृंखला के नामकरण में अनुमति नहीं" +Special Characters not allowed in Abbreviation,संक्षिप्त में अनुमति नहीं विशेष अक्षर +Special Characters not allowed in Company Name,कंपनी के नाम में अनुमति नहीं विशेष अक्षर Specification Details,विशिष्टता विवरण -Specify Exchange Rate to convert one currency into another,दूसरे में एक मुद्रा में परिवर्तित करने के लिए विनिमय दर को निर्दिष्ट "Specify a list of Territories, for which, this Price List is valid","शासित प्रदेशों की सूची निर्दिष्ट करें, जिसके लिए, यह मूल्य सूची मान्य है" "Specify a list of Territories, for which, this Shipping Rule is valid","शासित प्रदेशों की सूची निर्दिष्ट करें, जिसके लिए, यह नौवहन नियम मान्य है" "Specify a list of Territories, for which, this Taxes Master is valid","शासित प्रदेशों की सूची निर्दिष्ट करें, जिसके लिए, यह कर मास्टर मान्य है" -Specify conditions to calculate shipping amount,शिपिंग राशि की गणना करने की स्थिति निर्दिष्ट करें "Specify the operations, operating cost and give a unique Operation no to your operations.","संचालन, परिचालन लागत निर्दिष्ट और अपने संचालन के लिए एक अनूठा आपरेशन नहीं दे ." Split Delivery Note into packages.,संकुल में डिलिवरी नोट भाजित. Standard,मानक Standard Rate,मानक दर -"Standard Terms and Conditions that can be added to Sales and Purchases. - -Examples: - -1. Validity of the offer. -1. Payment Terms (In Advance, On Credit, part advance etc). -1. What is extra (or payable by the Customer). -1. Safety / usage warning. -1. Warranty if any. -1. Returns Policy. -1. Terms of shipping, if applicable. -1. Ways of addressing disputes, indemnity, liability, etc. -1. Address and Contact of your Company.", -"Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like ""Shipping"", ""Insurance"", ""Handling"" etc. - -#### Note - -The tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master. - -#### Description of Columns - -1. Calculation Type: - - This can be on **Net Total** (that is the sum of basic amount). - - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - - **Actual** (as mentioned). -2. Account Head: The Account ledger under which this tax will be booked -3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center. -4. Description: Description of the tax (that will be printed in invoices / quotes). -5. Rate: Tax rate. -6. Amount: Tax amount. -7. Total: Cumulative total to this point. -8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row). -9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both. -10. Add or Deduct: Whether you want to add or deduct the tax.", -"Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like ""Shipping"", ""Insurance"", ""Handling"" etc. - -#### Note - -The tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master. - -#### Description of Columns - -1. Calculation Type: - - This can be on **Net Total** (that is the sum of basic amount). - - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - - **Actual** (as mentioned). -2. Account Head: The Account ledger under which this tax will be booked -3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center. -4. Description: Description of the tax (that will be printed in invoices / quotes). -5. Rate: Tax rate. -6. Amount: Tax amount. -7. Total: Cumulative total to this point. -8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row). -9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", +Standard Reports,मानक रिपोर्ट +Standard contract terms for Sales or Purchase.,बिक्री या खरीद के लिए मानक अनुबंध शर्तों . Start,प्रारंभ Start Date,प्रारंभ दिनांक +Start Report For,प्रारंभ लिए रिपोर्ट Start date of current invoice's period,वर्तमान चालान की अवधि के आरंभ तिथि -Starting up...,शुरू ... +Start date should be less than end date for Item {0},प्रारंभ तिथि मद के लिए समाप्ति तिथि से कम होना चाहिए {0} +Start date should be less than end date.,प्रारंभ तिथि समाप्ति तिथि से कम होना चाहिए . State,राज्य Static Parameters,स्टेटिक पैरामीटर Status,हैसियत -Status must be one of ,स्थिति का एक होना चाहिए -Status should be Submitted,स्थिति प्रस्तुत किया जाना चाहिए +Status must be one of {0},स्थिति का एक होना चाहिए {0} +Status of {0} {1} is now {2},{0} {1} अब की स्थिति {2} +Status updated to {0},स्थिति को अद्यतन {0} Statutory info and other general information about your Supplier,वैधानिक अपने सप्लायर के बारे में जानकारी और अन्य सामान्य जानकारी Stock,स्टॉक +Stock Adjustment,शेयर समायोजन Stock Adjustment Account,स्टॉक समायोजन खाता Stock Ageing,स्टॉक बूढ़े Stock Analytics,स्टॉक विश्लेषिकी @@ -2486,49 +2668,52 @@ Stock Entry Detail,शेयर एंट्री विस्तार Stock Frozen Upto,स्टॉक तक जमे हुए Stock Ledger,स्टॉक लेजर Stock Ledger Entry,स्टॉक खाता प्रविष्टि +Stock Ledger entries balances updated,शेयर लेजर अद्यतन शेष प्रविष्टियों Stock Level,स्टॉक स्तर Stock Projected Qty,शेयर मात्रा अनुमानित -Stock Qty,स्टॉक मात्रा Stock Queue (FIFO),स्टॉक कतार (फीफो) Stock Received But Not Billed,स्टॉक प्राप्त लेकिन बिल नहीं Stock Reconcilation Data,शेयर Reconcilation डाटा Stock Reconcilation Template,शेयर Reconcilation खाका Stock Reconciliation,स्टॉक सुलह -"Stock Reconciliation can be used to update the stock on a particular date, ", +"Stock Reconciliation can be used to update the stock on a particular date, usually as per physical inventory.","शेयर सुलह आमतौर पर शारीरिक सूची के अनुसार , एक विशेष तिथि पर स्टॉक को अद्यतन करने के लिए इस्तेमाल किया जा सकता है ." Stock Settings,स्टॉक सेटिंग्स Stock UOM,स्टॉक UOM Stock UOM Replace Utility,स्टॉक UOM बदलें उपयोगिता +Stock UOM updatd for Item {0},आइटम के लिए स्टॉक UOM updatd {0} Stock Uom,स्टॉक Uom Stock Value,शेयर मूल्य Stock Value Difference,स्टॉक मूल्य अंतर -Stock transactions exist against warehouse , +Stock balances updated,शेयर शेष अद्यतन +Stock cannot be updated against Delivery Note {0},शेयर वितरण नोट के खिलाफ अद्यतन नहीं किया जा सकता {0} +Stock entries exist against warehouse {0} cannot re-assign or modify 'Master Name',शेयर प्रविष्टियों {0} ' मास्टर नाम ' फिर से आवंटित या संशोधित नहीं कर सकते गोदाम के खिलाफ मौजूद Stop,रोक Stop Birthday Reminders,बंद करो जन्मदिन अनुस्मारक Stop Material Request,बंद करो सामग्री अनुरोध Stop users from making Leave Applications on following days.,निम्नलिखित दिन पर छुट्टी अनुप्रयोग बनाने से उपयोगकर्ताओं को बंद करो. Stop!,बंद करो! Stopped,रोक -Structure cost centers for budgeting.,बजट के लिए संरचना लागत केन्द्रों. -Structure of books of accounts.,खातों की पुस्तकों की संरचना. +Stopped order cannot be cancelled. Unstop to cancel.,रूका आदेश को रद्द नहीं किया जा सकता . रद्द करने के लिए आगे बढ़ाना . +Stub,ठूंठ "Sub-currency. For e.g. ""Cent""",उप - मुद्रा. उदाहरण के लिए "प्रतिशत" Subcontract,उपपट्टा Subject,विषय +Submit,प्रस्तुत करना Submit Salary Slip,वेतनपर्ची सबमिट करें Submit all salary slips for the above selected criteria,ऊपर चयनित मानदंड के लिए सभी वेतन निकल जाता है भेजें Submit this Production Order for further processing.,आगे की प्रक्रिया के लिए इस उत्पादन का आदेश सबमिट करें . Submitted,पेश Subsidiary,सहायक Successful: ,सफल: -Suggestion,सुझाव +Successfully allocated,सफलतापूर्वक आवंटित Suggestions,सुझाव Sunday,रविवार Supplier,प्रदायक Supplier (Payable) Account,प्रदायक (देय) खाता Supplier (vendor) name as entered in supplier master,प्रदायक नाम (विक्रेता) के रूप में आपूर्तिकर्ता मास्टर में प्रवेश Supplier Account,प्रदायक खाता -Supplier Account Head,प्रदायक खाता हेड +Supplier Account Head,प्रदायक लेखाशीर्ष Supplier Address,प्रदायक पता -Supplier Addresses And Contacts,प्रदायक पते और संपर्क Supplier Addresses and Contacts,प्रदायक पते और संपर्क Supplier Details,आपूर्तिकर्ता विवरण Supplier Intro,प्रदायक पहचान @@ -2544,11 +2729,12 @@ Supplier Shipment Date,प्रदायक शिपमेंट तिथि Supplier Shipment No,प्रदायक शिपमेंट नहीं Supplier Type,प्रदायक प्रकार Supplier Type / Supplier,प्रदायक प्रकार / प्रदायक +Supplier Type master.,प्रदायक प्रकार मास्टर . Supplier Warehouse,प्रदायक वेअरहाउस -Supplier Warehouse mandatory subcontracted purchase receipt,प्रदायक गोदाम अनिवार्य subcontracted खरीद रसीद -Supplier classification.,प्रदायक वर्गीकरण. +Supplier Warehouse mandatory for sub-contracted Purchase Receipt,उप अनुबंधित खरीद रसीद के लिए अनिवार्य प्रदायक वेयरहाउस Supplier database.,प्रदायक डेटाबेस. -Supplier of Goods or Services.,सामान या सेवाओं की प्रदायक. +Supplier delivery number duplicate in {0},प्रदायक प्रसव संख्या में नकल {0} +Supplier master.,प्रदायक मास्टर . Supplier warehouse where you have issued raw materials for sub - contracting,प्रदायक गोदाम जहाँ आप उप के लिए कच्चे माल के जारी किए गए हैं - करार Supplier-Wise Sales Analytics,प्रदायक वार बिक्री विश्लेषिकी Support,समर्थन @@ -2559,19 +2745,15 @@ Support Email Settings,सहायता ईमेल सेटिंग्स Support Password,सहायता पासवर्ड Support Ticket,समर्थन टिकट Support queries from customers.,ग्राहकों से प्रश्नों का समर्थन करें. +Switch to Website,वेबसाइट के लिए स्विच Symbol,प्रतीक Sync Support Mails,समर्थन मेल समन्वयित Sync with Dropbox,ड्रॉपबॉक्स के साथ सिंक Sync with Google Drive,गूगल ड्राइव के साथ सिंक -System Administration,सिस्टम प्रशासन -System Scheduler Errors,सिस्टम समयबद्धक त्रुटियाँ +System,प्रणाली System Settings,सिस्टम सेटिंग्स "System User (login) ID. If set, it will become default for all HR forms.","सिस्टम प्रयोक्ता आईडी (प्रवेश). अगर सेट किया जाता है, यह सभी मानव संसाधन रूपों के लिए डिफ़ॉल्ट बन जाएगा." -System for managing Backups,बैकअप के प्रबंधन के लिए सिस्टम -System generated mails will be sent from this email id.,सिस्टम उत्पन्न मेल इस ईमेल आईडी से भेजा जाएगा. -TL-,टीएल- -TLB-,TLB- -Table for Item that will be shown in Web Site,टेबल आइटम के लिए है कि वेब साइट में दिखाया जाएगा +Tags,टैग Target Amount,लक्ष्य की राशि Target Detail,लक्ष्य विस्तार Target Details,लक्ष्य विवरण @@ -2580,22 +2762,21 @@ Target Distribution,लक्ष्य वितरण Target On,योजनापूर्ण Target Qty,लक्ष्य मात्रा Target Warehouse,लक्ष्य वेअरहाउस +Target warehouse in row {0} must be same as Production Order,पंक्ति में लक्ष्य गोदाम {0} के रूप में ही किया जाना चाहिए उत्पादन का आदेश +Target warehouse is mandatory for row {0},लक्ष्य गोदाम पंक्ति के लिए अनिवार्य है {0} Task,कार्य Task Details,कार्य विवरण Tasks,कार्य Tax,कर -Tax Accounts,कर खातों -Tax Calculation,कर गणना +Tax Amount After Discount Amount,सबसे कम राशि के बाद टैक्स राशि Tax Category can not be 'Valuation' or 'Valuation and Total' as all items are non-stock items,टैक्स श्रेणी ' मूल्यांकन ' या ' मूल्यांकन और कुल ' सभी आइटम गैर स्टॉक वस्तुओं रहे हैं के रूप में नहीं किया जा सकता -Tax Master,टैक्स मास्टर Tax Rate,कर की दर -Tax Template for Purchase,खरीद के लिए कर टेम्पलेट -Tax Template for Sales,बिक्री के लिए टैक्स टेम्पलेट Tax and other salary deductions.,टैक्स और अन्य वेतन कटौती. "Tax detail table fetched from item master as a string and stored in this field. Used for Taxes and Charges", +Tax template for buying transactions.,लेनदेन खरीदने के लिए टैक्स टेम्पलेट . +Tax template for selling transactions.,लेनदेन को बेचने के लिए टैक्स टेम्पलेट . Taxable,कर योग्य -Taxes,कर Taxes and Charges,करों और प्रभार Taxes and Charges Added,कर और शुल्क जोड़ा Taxes and Charges Added (Company Currency),करों और शुल्कों जोड़ा (कंपनी मुद्रा) @@ -2604,7 +2785,7 @@ Taxes and Charges Deducted,कर और शुल्क कटौती Taxes and Charges Deducted (Company Currency),कर और शुल्क कटौती (कंपनी मुद्रा) Taxes and Charges Total,कर और शुल्क कुल Taxes and Charges Total (Company Currency),करों और शुल्कों कुल (कंपनी मुद्रा) -Template for employee performance appraisals.,कर्मचारी प्रदर्शन appraisals के लिए खाका. +Template for performance appraisals.,प्रदर्शन मूल्यांकन के लिए खाका . Template of terms or contract.,शब्दों या अनुबंध के टेम्पलेट. Term Details,अवधि विवरण Terms,शर्तें @@ -2618,10 +2799,11 @@ Territory,क्षेत्र Territory / Customer,टेरिटरी / ग्राहक Territory Manager,क्षेत्र प्रबंधक Territory Name,टेरिटरी नाम -Territory Target Variance (Item Group-Wise),टेरिटरी लक्ष्य विचरण (आइटम समूह वार) +Territory Target Variance Item Group-Wise,क्षेत्र को लक्षित विचरण मद समूहवार Territory Targets,टेरिटरी लक्ष्य Test,परीक्षण Test Email Id,टेस्ट ईमेल आईडी +Test Runner,परीक्षण धावक Test the Newsletter,न्यूज़लैटर टेस्ट The BOM which will be replaced,बीओएम जो प्रतिस्थापित किया जाएगा The First User: You,पहले उपयोगकर्ता : आप @@ -2632,7 +2814,7 @@ The Organization,संगठन ", The date on which recurring invoice will be stop,"तारीख, जिस पर आवर्ती चालान रोकने के लिए किया जाएगा" "The day of the month on which auto invoice will be generated e.g. 05, 28 etc ","ऑटो चालान जैसे 05, 28 आदि उत्पन्न हो जाएगा, जिस पर इस महीने के दिन" -The day(s) on which you are applying for leave coincide with holiday(s). You need not apply for leave.,आप छुट्टी के लिए आवेदन कर रहे हैं जिस दिन (ओं ) अवकाश (एस ) के साथ मेल खाना . तुम्हें छोड़ के लिए लागू की जरूरत नहीं . +The day(s) on which you are applying for leave are holiday. You need not apply for leave.,आप छुट्टी के लिए आवेदन कर रहे हैं जिस दिन (ओं ) अवकाश हैं . तुम्हें छोड़ के लिए लागू की जरूरत नहीं . The first Leave Approver in the list will be set as the default Leave Approver,सूची में पहले छोड़ अनुमोदक डिफ़ॉल्ट छोड़ दो अनुमोदक के रूप में स्थापित किया जाएगा The first user will become the System Manager (you can change that later).,पहली उपयोगकर्ता ( आप कि बाद में बदल सकते हैं) सिस्टम मैनेजर बन जाएगा . The gross weight of the package. Usually net weight + packaging material weight. (for print),पैकेज के कुल वजन. आमतौर पर शुद्ध + वजन पैकेजिंग सामग्री के वजन. (प्रिंट के लिए) @@ -2641,23 +2823,29 @@ The net weight of this package. (calculated automatically as sum of net weight o The new BOM after replacement,बदलने के बाद नए बीओएम The rate at which Bill Currency is converted into company's base currency,जिस दर पर विधेयक मुद्रा कंपनी के बेस मुद्रा में परिवर्तित किया जाता है The unique id for tracking all recurring invoices. It is generated on submit.,सभी आवर्ती चालान पर नज़र रखने के लिए अद्वितीय पहचान. इसे प्रस्तुत करने पर उत्पन्न होता है. +Then By (optional),तब तक (वैकल्पिक) +There are more holidays than working days this month.,इस महीने के दिन काम की तुलना में अधिक छुट्टियां कर रहे हैं . +"There can only be one Shipping Rule Condition with 0 or blank value for ""To Value""","केवल "" मूल्य "" के लिए 0 या रिक्त मान के साथ एक शिपिंग शासन की स्थिति नहीं हो सकता" +There is not enough leave balance for Leave Type {0},छोड़ दो प्रकार के लिए पर्याप्त छुट्टी संतुलन नहीं है {0} There is nothing to edit.,संपादित करने के लिए कुछ भी नहीं है . There was an error. One probable reason could be that you haven't saved the form. Please contact support@erpnext.com if the problem persists.,कोई त्रुटि हुई थी . एक संभावित कारण यह है कि आप प्रपत्र को बचाया नहीं किया है कि हो सकता है. यदि समस्या बनी रहती support@erpnext.com से संपर्क करें. +There were errors,त्रुटियां थीं +There were errors while sending email. Please try again.,ईमेल भेजने के दौरान त्रुटि . पुन: प्रयास करें . There were errors.,त्रुटियां थीं . -This Cost Center is a,यह लागत केंद्र एक है This Currency is disabled. Enable to use in transactions,इस मुद्रा में अक्षम है. लेनदेन में उपयोग करने के लिए सक्षम करें -This ERPNext subscription,इस ERPNext सदस्यता This Leave Application is pending approval. Only the Leave Apporver can update status.,इस छुट्टी के लिए अर्जी अनुमोदन के लिए लंबित है . केवल लीव Apporver स्थिति अपडेट कर सकते हैं . This Time Log Batch has been billed.,इस बार प्रवेश बैच बिल भेजा गया है. This Time Log Batch has been cancelled.,इस बार प्रवेश बैच रद्द कर दिया गया. -This Time Log conflicts with,साथ इस बार प्रवेश संघर्ष +This Time Log conflicts with {0},इस बार प्रवेश के साथ संघर्ष {0} +This is PERMANENT action and you cannot undo. Continue?,यह स्थायी कार्रवाई की है और आप पूर्ववत नहीं कर सकते. जारी रखें? This is a root account and cannot be edited.,इस रुट खाता है और संपादित नहीं किया जा सकता है . This is a root customer group and cannot be edited.,यह एक रूट ग्राहक समूह है और संपादित नहीं किया जा सकता है . This is a root item group and cannot be edited.,यह एक रूट आइटम समूह है और संपादित नहीं किया जा सकता है . This is a root sales person and cannot be edited.,यह एक रूट बिक्री व्यक्ति है और संपादित नहीं किया जा सकता है . This is a root territory and cannot be edited.,यह एक जड़ क्षेत्र है और संपादित नहीं किया जा सकता है . +This is permanent action and you cannot undo. Continue?,यह स्थायी कार्रवाई है और आप पूर्ववत नहीं कर सकते. जारी रखें? +"This is the default number format. For currencies, please set the number format in the currency master.",यह डिफ़ॉल्ट संख्या स्वरूप है . मुद्राओं के लिए मुद्रा मास्टर में संख्या स्वरूप सेट करें. This is the number of the last created transaction with this prefix,यह इस उपसर्ग के साथ पिछले बनाई गई लेन - देन की संख्या -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.,यह उपकरण आपको या अद्यतन करने और प्रणाली में शेयर की वैल्यूएशन मात्रा को ठीक करने में मदद करता है. यह आमतौर पर प्रणाली मूल्यों सिंक्रनाइज़ करने के लिए प्रयोग किया जाता है और क्या वास्तव में अपने गोदामों में मौजूद है. This will be used for setting rule in HR module,इस मॉड्यूल में मानव संसाधन सेटिंग शासन के लिए इस्तेमाल किया जाएगा Thread HTML,धागा HTML Thursday,बृहस्पतिवार @@ -2665,15 +2853,16 @@ Time Log,समय प्रवेश Time Log Batch,समय प्रवेश बैच Time Log Batch Detail,समय प्रवेश बैच विस्तार Time Log Batch Details,समय प्रवेश बैच विवरण -Time Log Batch status must be 'Submitted',समय प्रवेश बैच स्थिति 'प्रस्तुत' किया जाना चाहिए +Time Log Batch {0} must be 'Submitted',समय लॉग बैच {0} ' प्रस्तुत ' होना चाहिए Time Log for tasks.,कार्यों के लिए समय प्रवेश. -Time Log must have status 'Submitted',समय प्रवेश की स्थिति 'प्रस्तुत' होना चाहिए +Time Log {0} must be 'Submitted',समय लॉग {0} ' प्रस्तुत ' होना चाहिए Time Zone,समय क्षेत्र Time Zones,टाइम जोन Time and Budget,समय और बजट Time at which items were delivered from warehouse,जिस पर समय आइटम गोदाम से दिया गया था Time at which materials were received,जो समय पर सामग्री प्राप्त हुए थे Title,शीर्षक +Titles for print templates e.g. Proforma Invoice.,प्रिंट टेम्पलेट्स के लिए खिताब उदा प्रोफार्मा चालान . To,से To Currency,मुद्रा के लिए To Date,तिथि करने के लिए @@ -2681,14 +2870,12 @@ To Date should be same as From Date for Half Day leave,तिथि करने To Discuss,चर्चा करने के लिए To Do List,सूची To Package No.,सं पैकेज -To Pay,भुगतान करने के लिए To Produce,निर्माण करने के लिए To Time,समय के लिए To Value,मूल्य के लिए To Warehouse,गोदाम के लिए "To add child nodes, explore tree and click on the node under which you want to add more nodes.","बच्चे नोड्स जोड़ने के लिए, पेड़ लगाने और आप अधिक नोड्स जोड़ना चाहते हैं जिसके तहत नोड पर क्लिक करें." "To assign this issue, use the ""Assign"" button in the sidebar.","इस मुद्दे को असाइन करने के लिए, साइडबार में "निरुपित" बटन का उपयोग करें." -"To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.","स्वचालित रूप से अपनी आने वाली मेल से समर्थन टिकट बनाने के लिए, अपने POP3 सेटिंग्स यहाँ सेट. तुम आदर्श erp प्रणाली के लिए एक अलग ईमेल आईडी बनाने के लिए इतना है कि सभी ईमेल प्रणाली में है कि मेल आईडी से synced जाएगा चाहिए. यदि आप सुनिश्चित नहीं कर रहे हैं, अपने ईमेल प्रदाता से संपर्क करें." To create a Bank Account:,एक बैंक खाता बनाने के लिए: To create a Tax Account:,एक टैक्स खाता बनाने के लिए: "To create an Account Head under a different company, select the company and save customer.","एक अलग कंपनी के तहत एक खाता प्रमुख बनाने के लिए, कंपनी का चयन करें और ग्राहक को बचाने." @@ -2696,8 +2883,10 @@ To date cannot be before from date,तिथि करने के लिए To enable Point of Sale features,बिक्री सुविधाओं के प्वाइंट को सक्षम To enable Point of Sale view,बिक्री < / b > देखने की प्वाइंट सक्षम करने के लिए To get Item Group in details table,विवरण तालिका में आइटम समूह +"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","पंक्ति में कर शामिल करने के लिए {0} आइटम रेट में , पंक्तियों में करों {1} भी शामिल किया जाना चाहिए" "To merge, following properties must be same for both items","मर्ज करने के लिए , निम्नलिखित गुण दोनों मदों के लिए ही होना चाहिए" "To report an issue, go to ", +"To run a test add the module name in the route after '{0}'. For example, {1}","एक परीक्षण '{0}' के बाद मार्ग में मॉड्यूल नाम जोड़ने को चलाने के लिए . उदाहरण के लिए , {1}" "To set this Fiscal Year as Default, click on 'Set as Default'","डिफ़ॉल्ट रूप में इस वित्तीय वर्ष में सेट करने के लिए , 'मूलभूत रूप में सेट करें ' पर क्लिक करें" To track any installation or commissioning related work after sales,किसी भी स्थापना या बिक्री के बाद कमीशन से संबंधित काम को ट्रैक "To track brand name in the following documents
@@ -2706,9 +2895,7 @@ To track item in sales and purchase documents based on their serial nos. This is To track items in sales and purchase documents with batch nos
Preferred Industry: Chemicals etc,बैच ओपन स्कूल के साथ बिक्री और खरीद दस्तावेजों में आइटम्स ट्रैक
पसंदीदा उद्योग: आदि रसायन To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,बारकोड का उपयोग करके आइटम्स ट्रैक. आप आइटम के बारकोड स्कैनिंग द्वारा डिलिवरी नोट और बिक्री चालान में आइटम दर्ज करने में सक्षम हो जाएगा. Tools,उपकरण -Top,शीर्ष Total,संपूर्ण -Total (sum of) points distribution for all goals should be 100.,सभी लक्ष्यों के लिए कुल अंक वितरण (का योग) 100 होना चाहिए. Total Advance,कुल अग्रिम Total Amount,कुल राशि Total Amount To Pay,कुल भुगतान राशि @@ -2727,7 +2914,7 @@ Total Hours (Expected),कुल घंटे (उम्मीद) Total Invoiced Amount,कुल चालान राशि Total Leave Days,कुल छोड़ दो दिन Total Leaves Allocated,कुल पत्तियां आवंटित -Total Manufactured Qty can not be greater than Planned qty to manufacture,कुल निर्मित मात्रा नियोजित मात्रा का निर्माण करने के लिए अधिक से अधिक नहीं हो सकता +Total Message(s),कुल संदेश (ओं ) Total Operating Cost,कुल परिचालन लागत Total Points,कुल अंक Total Raw Material Cost,कुल कच्चे माल की लागत @@ -2736,18 +2923,21 @@ Total Score (Out of 5),कुल स्कोर (5 से बाहर) Total Tax (Company Currency),कुल टैक्स (कंपनी मुद्रा) Total Taxes and Charges,कुल कर और शुल्क Total Taxes and Charges (Company Currency),कुल करों और शुल्कों (कंपनी मुद्रा) +Total Words,कुल शब्द Total Working Days In The Month,महीने में कुल कार्य दिन +Total allocated percentage for sales team should be 100,बिक्री टीम के लिए कुल आवंटित 100 प्रतिशत होना चाहिए Total amount of invoices received from suppliers during the digest period,चालान की कुल राशि को पचाने की अवधि के दौरान आपूर्तिकर्ताओं से प्राप्त Total amount of invoices sent to the customer during the digest period,चालान की कुल राशि को पचाने की अवधि के दौरान ग्राहक को भेजा +Total cannot be zero,कुल शून्य नहीं हो सकते Total in words,शब्दों में कुल -Total production order qty for item,आइटम के लिए कुल उत्पादन आदेश मात्रा +Total points for all goals should be 100. It is {0},सभी लक्ष्यों के लिए कुल अंक 100 होना चाहिए . यह है {0} +Total weightage assigned should be 100%. It is {0},कुल आवंटित वेटेज 100 % होना चाहिए . यह है {0} Totals,योग -Track separate Income and Expense for product verticals or divisions.,अलग और उत्पाद कार्यक्षेत्र या विभाजन के लिए आय और खर्च हुए. Track this Delivery Note against any Project,किसी भी परियोजना के खिलाफ इस डिलिवरी नोट हुए Track this Sales Order against any Project,किसी भी परियोजना के खिलाफ हुए इस बिक्री आदेश Transaction,लेन - देन Transaction Date,लेनदेन की तारीख -Transaction not allowed against stopped Production Order,लेन - देन बंद कर दिया प्रोडक्शन आदेश के खिलाफ अनुमति नहीं +Transaction not allowed against stopped Production Order {0},लेन - देन बंद कर दिया प्रोडक्शन आदेश के खिलाफ अनुमति नहीं {0} Transfer,हस्तांतरण Transfer Material,हस्तांतरण सामग्री Transfer Raw Materials,कच्चे माल स्थानांतरण @@ -2757,31 +2947,37 @@ Transporter Name,ट्रांसपोर्टर नाम Transporter lorry number,ट्रांसपोर्टर लॉरी नंबर Trash Reason,ट्रैश कारण Tree Type,पेड़ के प्रकार -Tree of item classification,आइटम वर्गीकरण के पेड़ +Tree of Item Groups.,आइटम समूहों के पेड़ . +Tree of finanial Cost Centers.,Finanial लागत केन्द्रों का पेड़ . +Tree of finanial accounts.,Finanial खातों का पेड़ . Trial Balance,शेष - परीक्षण Tuesday,मंगलवार Type,टाइप Type of document to rename.,नाम बदलने के लिए दस्तावेज का प्रकार. -Type of employment master.,रोजगार गुरु के टाइप करें. "Type of leaves like casual, sick etc.","आकस्मिक, बीमार आदि की तरह पत्तियों के प्रकार" Types of Expense Claim.,व्यय दावा के प्रकार. Types of activities for Time Sheets,गतिविधियों के समय पत्रक के लिए प्रकार -UOM,UOM +"Types of employment (permanent, contract, intern etc.).","रोजगार ( स्थायी , अनुबंध , प्रशिक्षु आदि ) के प्रकार." UOM Conversion Detail,UOM रूपांतरण विस्तार UOM Conversion Details,UOM रूपांतरण विवरण UOM Conversion Factor,UOM रूपांतरण फैक्टर -UOM Conversion Factor is mandatory,UOM रूपांतरण फैक्टर अनिवार्य है +UOM Conversion factor is required in row {0},UOM रूपांतरण कारक पंक्ति में आवश्यक है {0} UOM Name,UOM नाम -UOM Replace Utility,UOM बदलें उपयोगिता +UOM coversion factor required for UOM {0} in Item {1},UOM के लिए आवश्यक UOM coversion कारक {0} मद में {1} +Unable to load: {0},लोड करने में असमर्थ : {0} Under AMC,एएमसी के तहत Under Graduate,पूर्व - स्नातक Under Warranty,वारंटी के अंतर्गत Unit of Measure,माप की इकाई +Unit of Measure {0} has been entered more than once in Conversion Factor Table,मापने की इकाई {0} अधिक रूपांतरण कारक तालिका में एक बार से अधिक दर्ज किया गया है "Unit of measurement of this item (e.g. Kg, Unit, No, Pair).","इस मद के माप की इकाई (जैसे किलोग्राम, यूनिट, नहीं, जोड़ी)." Units/Hour,इकाइयों / घंटा Units/Shifts,इकाइयों / पाली +Unknown Column: {0},अज्ञात स्तंभ : {0} +Unknown Print Format: {0},अज्ञात छापा स्वरूप: {0} Unmatched Amount,बेजोड़ राशि Unpaid,अवैतनिक +Unread Messages,अपठित संदेशों Unscheduled,अनिर्धारित Unstop,आगे बढ़ाना Unstop Material Request,आगे बढ़ाना सामग्री अनुरोध @@ -2792,64 +2988,65 @@ Update Clearance Date,अद्यतन क्लीयरेंस तिथ Update Cost,अद्यतन लागत Update Finished Goods,अद्यतन तैयार माल Update Landed Cost,अद्यतन लागत उतरा -Update Numbering Series,अद्यतन क्रमांकन सीरीज Update Series,अद्यतन श्रृंखला Update Series Number,अद्यतन सीरीज नंबर Update Stock,स्टॉक अद्यतन -Update Stock should be checked.,अद्यतन स्टॉक की जाँच की जानी चाहिए. "Update allocated amount in the above table and then click ""Allocate"" button",उपरोक्त तालिका में आवंटित राशि का अद्यतन और फिर "आवंटित" बटन पर क्लिक करें Update bank payment dates with journals.,अद्यतन बैंक भुगतान पत्रिकाओं के साथ तिथियाँ. Update clearance date of Journal Entries marked as 'Bank Vouchers',जर्नल प्रविष्टियों का अद्यतन निकासी की तारीख ' बैंक वाउचर ' के रूप में चिह्नित Updated,अद्यतित Updated Birthday Reminders,नवीनीकृत जन्मदिन अनुस्मारक +Upload,अपलोड +Upload Attachment,अनुलग्नक अपलोड करें Upload Attendance,उपस्थिति अपलोड Upload Backups to Dropbox,ड्रॉपबॉक्स के लिए बैकअप अपलोड Upload Backups to Google Drive,गूगल ड्राइव के लिए बैकअप अपलोड Upload HTML,HTML अपलोड Upload a .csv file with two columns: the old name and the new name. Max 500 rows.,पुराने नाम और नया नाम:. दो कॉलम के साथ एक csv फ़ाइल अपलोड करें. अधिकतम 500 पंक्तियाँ. +Upload a file,एक फ़ाइल अपलोड करें Upload attendance from a .csv file,. Csv फ़ाइल से उपस्थिति अपलोड करें Upload stock balance via csv.,Csv के माध्यम से शेयर संतुलन अपलोड करें. Upload your letter head and logo - you can edit them later.,अपने पत्र सिर और लोगो अपलोड करें - आप बाद में उन्हें संपादित कर सकते हैं . -Uploaded File Attachments,अपलोड की गई फ़ाइल अनुलग्नक +Uploading...,अपलोड हो रहा है ... Upper Income,ऊपरी आय Urgent,अत्यावश्यक Use Multi-Level BOM,मल्टी लेवल बीओएम का उपयोग करें Use SSL,SSL का उपयोग -Use TLS,टीएलएस का प्रयोग करें User,उपयोगकर्ता User ID,प्रयोक्ता आईडी +User ID not set for Employee {0},यूजर आईडी कर्मचारी के लिए सेट नहीं {0} User Name,यूज़र नेम -User Properties,उपयोगकर्ता के गुण +User Name or Support Password missing. Please enter and try again.,उपयोगकर्ता नाम या समर्थन पारण लापता . भरें और फिर कोशिश करें. +User Permission Restrictions,उपयोगकर्ता की अनुमति प्रतिबंध User Remark,उपयोगकर्ता के टिप्पणी User Remark will be added to Auto Remark,उपयोगकर्ता टिप्पणी ऑटो टिप्पणी करने के लिए जोड़ दिया जाएगा -User Tags,उपयोगकर्ता के टैग +User Remarks is mandatory,उपयोगकर्ता अनिवार्य है रिमार्क्स +User Restrictions,उपयोगकर्ता का प्रतिबंध +User Specific,उपयोगकर्ता विशिष्ट User must always select,उपयोगकर्ता हमेशा का चयन करना होगा -User settings for Point-of-sale (POS),प्वाइंट की बिक्री ( पीओएस ) के लिए उपयोगकर्ता सेटिंग्स +User {0} is already assigned to Employee {1},प्रयोक्ता {0} पहले से ही कर्मचारी को सौंपा है {1} +User {0} is disabled,प्रयोक्ता {0} अक्षम है Username,प्रयोक्ता नाम -Users and Permissions,उपयोगकर्ता और अनुमतियाँ -Users who can approve a specific employee's leave applications,एक विशिष्ट कर्मचारी की छुट्टी आवेदनों को स्वीकृत कर सकते हैं जो उपयोगकर्ता Users with this role are allowed to create / modify accounting entry before frozen date,इस भूमिका के साथ उपयोक्ता जमी तारीख से पहले लेखा प्रविष्टि को संशोधित / बनाने के लिए अनुमति दी जाती है Users with this role are allowed to set frozen accounts and create / modify accounting entries against frozen accounts,इस भूमिका के साथ उपयोक्ता जमे हुए खातों के खिलाफ लेखांकन प्रविष्टियों को संशोधित / जमे हुए खातों सेट और बनाने के लिए अनुमति दी जाती है Utilities,उपयोगिताएँ -Utility,उपयोगिता Valid For Territories,राज्य क्षेत्रों के लिए मान्य +Valid From,चुन Valid Upto,विधिमान्य -Valid for Buying or Selling?,खरीदने या बेचने के लिए मान्य है? Valid for Territories,राज्य क्षेत्रों के लिए मान्य Validate,मान्य करें Valuation,मूल्याकंन Valuation Method,मूल्यन विधि Valuation Rate,मूल्यांकन दर +Valuation Rate required for Item {0},आइटम के लिए आवश्यक मूल्यांकन दर {0} Valuation and Total,मूल्यांकन और कुल Value,मूल्य Value or Qty,मूल्य या मात्रा Vehicle Dispatch Date,वाहन डिस्पैच तिथि Vehicle No,वाहन नहीं Verified By,द्वारा सत्यापित -View,राय View Ledger,देखें खाता बही View Now,अब देखें -Visit,भेंट Visit report for maintenance call.,रखरखाव कॉल के लिए रिपोर्ट पर जाएँ. Voucher #,वाउचर # Voucher Detail No,वाउचर विस्तार नहीं @@ -2860,30 +3057,36 @@ Voucher Type and Date,वाउचर का प्रकार और तिथ WIP Warehouse required before Submit,WIP के गोदाम सबमिट करने से पहले आवश्यक Walk In,में चलो Warehouse,गोदाम -Warehouse , Warehouse Contact Info,वेयरहाउस संपर्क जानकारी Warehouse Detail,वेअरहाउस विस्तार Warehouse Name,वेअरहाउस नाम Warehouse User,वेअरहाउस उपयोगकर्ता के -Warehouse Users,वेयरहाउस उपयोगकर्ताओं Warehouse and Reference,गोदाम और संदर्भ +Warehouse can not be deleted as stock ledger entry exists for this warehouse.,शेयर खाता प्रविष्टि इस गोदाम के लिए मौजूद वेयरहाउस हटाया नहीं जा सकता . Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,वेयरहाउस केवल स्टॉक एंट्री / डिलिवरी नोट / खरीद रसीद के माध्यम से बदला जा सकता है Warehouse cannot be changed for Serial No.,वेयरहाउस सीरियल नंबर के लिए बदला नहीं जा सकता -Warehouse does not belong to company.,गोदाम कंपनी से संबंधित नहीं है. +Warehouse is mandatory for stock Item {0} in row {1},गोदाम स्टॉक मद के लिए अनिवार्य है {0} पंक्ति में {1} Warehouse is missing in Purchase Order,गोदाम क्रय आदेश में लापता है +Warehouse required for stock Item {0},शेयर मद के लिए आवश्यक वेयरहाउस {0} +Warehouse required in POS Setting,स्थिति की स्थापना में आवश्यक वेयरहाउस Warehouse where you are maintaining stock of rejected items,वेअरहाउस जहाँ आप को अस्वीकार कर दिया आइटम के शेयर को बनाए रखने रहे हैं -Warehouse-Wise Stock Balance,गोदाम वार स्टॉक शेष +Warehouse {0} can not be deleted as quantity exists for Item {1},मात्रा मद के लिए मौजूद वेयरहाउस {0} मिटाया नहीं जा सकता {1} +Warehouse {0} does not belong to company {1},वेयरहाउस {0} से संबंधित नहीं है कंपनी {1} +Warehouse {0} does not exist,वेयरहाउस {0} मौजूद नहीं है +Warehouse-Wise Stock Balance,वेयरहाउस वार शेयर बैलेंस Warehouse-wise Item Reorder,गोदाम वार आइटम पुनः क्रमित करें Warehouses,गोदामों +Warehouses.,गोदामों . Warn,चेतावनी देना Warning: Leave application contains following block dates,चेतावनी: अवकाश आवेदन निम्न ब्लॉक दिनांक शामिल Warning: Material Requested Qty is less than Minimum Order Qty,चेतावनी: मात्रा अनुरोध सामग्री न्यूनतम आदेश मात्रा से कम है +Warning: Sales Order {0} already exists against same Purchase Order number,चेतावनी: बिक्री आदेश {0} पहले से ही एक ही क्रय आदेश संख्या खिलाफ मौजूद है +Warning: System will not check overbilling since amount for Item {0} in {1} is zero,चेतावनी: सिस्टम {0} {1} शून्य है में आइटम के लिए राशि के बाद से overbilling जांच नहीं करेगा Warranty / AMC Details,वारंटी / एएमसी विवरण Warranty / AMC Status,वारंटी / एएमसी स्थिति Warranty Expiry Date,वारंटी समाप्ति तिथि Warranty Period (Days),वारंटी अवधि (दिन) Warranty Period (in days),वारंटी अवधि (दिनों में) -Warranty expiry date and maintenance status mismatched,वारंटी समाप्ति की तारीख और रखरखाव की स्थिति बेमेल Website,वेबसाइट Website Description,वेबसाइट विवरण Website Item Group,वेबसाइट आइटम समूह @@ -2900,7 +3103,7 @@ Weightage (%),वेटेज (%) Welcome to ERPNext. Over the next few minutes we will help you setup your ERPNext account. Try and fill in as much information as you have even if it takes a bit longer. It will save you a lot of time later. Good Luck!,"ERPNext में आपका स्वागत है . अगले कुछ मिनटों में हम आप सेटअप अपने ERPNext खाते में मदद मिलेगी . कोशिश करो और तुम यह एक लंबा सा लेता है , भले ही है जितना जानकारी भरें. बाद में यह तुम समय की एक बहुत बचत होगी . गुड लक !" What does it do?,यह क्या करता है? "When any of the checked transactions are ""Submitted"", an email pop-up automatically opened to send an email to the associated ""Contact"" in that transaction, with the transaction as an attachment. The user may or may not send the email.",", एक चेक किए गए लेनदेन के किसी भी "प्रस्तुत कर रहे हैं" पॉप - अप ईमेल स्वचालित रूप से जुड़े है कि सौदे में "संपर्क" के लिए एक ईमेल भेजने के लिए, एक अनुलग्नक के रूप में लेन - देन के साथ खोला. उपयोगकर्ता या ईमेल भेजने के लिए नहीं हो सकता." -"When submitted, the system creates difference entries ", +"When submitted, the system creates difference entries to set the given stock and valuation on this date.","प्रस्तुत करता है, सिस्टम इस तिथि पर दिए स्टॉक और मूल्य निर्धारण स्थापित करने के लिए अंतर प्रविष्टियों बनाता है ." Where items are stored.,आइटम कहाँ संग्रहीत हैं. Where manufacturing operations are carried out.,जहां निर्माण कार्यों से बाहर किया जाता है. Widowed,विधवा @@ -2908,12 +3111,15 @@ Will be calculated automatically when you enter the details,स्वचाल Will be updated after Sales Invoice is Submitted.,बिक्री चालान प्रस्तुत होने के बाद अद्यतन किया जाएगा. Will be updated when batched.,Batched जब अद्यतन किया जाएगा. Will be updated when billed.,बिल भेजा जब अद्यतन किया जाएगा. +With Groups,समूह के साथ +With Ledgers,बहीखाते के साथ With Operations,आपरेशनों के साथ With period closing entry,अवधि समापन प्रवेश के साथ Work Details,कार्य विवरण Work Done,करेंकिया गया काम Work In Progress,अर्धनिर्मित उत्पादन Work-in-Progress Warehouse,कार्य में प्रगति गोदाम +Workflow will start after saving.,कार्यप्रवाह सहेजने के बाद शुरू कर देंगे. Working,कार्य Workstation,वर्कस्टेशन Workstation Name,वर्कस्टेशन नाम @@ -2930,100 +3136,98 @@ Year Closed,साल बंद कर दिया Year End Date,वर्षांत तिथि Year Name,वर्ष नाम Year Start Date,वर्ष प्रारंभ दिनांक -Year Start Date and Year End Date are already set in Fiscal Year: , +Year Start Date and Year End Date are already set in Fiscal Year {0},वर्ष प्रारंभ तिथि और वर्ष के अंत तिथि पहले से ही वित्त वर्ष में स्थापित कर रहे हैं {0} Year Start Date and Year End Date are not within Fiscal Year.,वर्ष प्रारंभ तिथि और वर्ष के अंत तिथि वित्त वर्ष के भीतर नहीं हैं . Year Start Date should not be greater than Year End Date,वर्ष प्रारंभ दिनांक वर्ष अन्त तिथि से बड़ा नहीं होना चाहिए Year of Passing,पासिंग का वर्ष Yearly,वार्षिक Yes,हां -You are not allowed to reply to this ticket.,आप इस टिकट का उत्तर देने की अनुमति नहीं है . -You are not authorized to do/modify back dated entries before ,आप पहले / दिनांक प्रविष्टियों पीठ को संशोधित करने के लिए अधिकृत नहीं हैं +Yesterday,कल +You are not allowed to create / edit reports,आप / संपादित रिपोर्ट बनाने के लिए अनुमति नहीं है +You are not allowed to create {0},तुम बनाने के लिए अनुमति नहीं है {0} +You are not allowed to export this report,आप इस रिपोर्ट को निर्यात करने की अनुमति नहीं है +You are not allowed to print this document,आप इस दस्तावेज़ मुद्रित करने की अनुमति नहीं है +You are not allowed to send emails related to this document,आप इस दस्तावेज़ से संबंधित ईमेल भेजने की अनुमति नहीं है +You are not authorized to add or update entries before {0},इससे पहले कि आप प्रविष्टियों को जोड़ने या अद्यतन करने के लिए अधिकृत नहीं हैं {0} You are not authorized to set Frozen value,आप स्थिर मूल्य निर्धारित करने के लिए अधिकृत नहीं हैं You are the Expense Approver for this record. Please Update the 'Status' and Save,आप इस रिकॉर्ड के लिए खर्च अनुमोदक हैं . 'स्थिति' अद्यतन और बचा लो You are the Leave Approver for this record. Please Update the 'Status' and Save,आप इस रिकॉर्ड के लिए छोड़ अनुमोदक हैं . 'स्थिति' अद्यतन और बचा लो -You can Enter Row only if your Charge Type is 'On Previous Row Amount' or ' Previous Row Total',अपने आरोप के प्रकार या ' पिछली पंक्ति कुल ' पिछली पंक्ति राशि पर ' तभी आप पंक्ति दर्ज कर सकते हैं You can enter any date manually,आप किसी भी तारीख को मैन्युअल रूप से दर्ज कर सकते हैं You can enter the minimum quantity of this item to be ordered.,आप इस मद की न्यूनतम मात्रा में करने के लिए आदेश दिया जा में प्रवेश कर सकते हैं. +You can not assign itself as parent account,तुम माता पिता के खाते के रूप में खुद को आवंटन नहीं कर सकते You can not change rate if BOM mentioned agianst any item,बीओएम किसी भी आइटम agianst उल्लेख अगर आप दर में परिवर्तन नहीं कर सकते You can not enter both Delivery Note No and Sales Invoice No. Please enter any one.,आप नहीं दोनों डिलिवरी नोट में प्रवेश नहीं कर सकते हैं और बिक्री चालान नहीं किसी भी एक दर्ज करें. -"You can start by selecting backup frequency and \ - granting access for sync", +You can not enter current voucher in 'Against Journal Voucher' column,आप स्तंभ ' जर्नल वाउचर के खिलाफ' में मौजूदा वाउचर प्रवेश नहीं कर सकते +You can set Default Bank Account in Company master,आप कंपनी मास्टर में डिफ़ॉल्ट बैंक खाता सेट कर सकते हैं +You can start by selecting backup frequency and granting access for sync,आप बैकअप आवृत्ति का चयन और सिंक के लिए पहुँच प्रदान कर शुरू कर सकते हैं You can submit this Stock Reconciliation.,आप इस स्टॉक सुलह प्रस्तुत कर सकते हैं . You can update either Quantity or Valuation Rate or both.,आप मात्रा या मूल्यांकन दर या दोनों को अपडेट कर सकते हैं . -You cannot Enter Row no. greater than or equal to current row no. for this Charge type,आप कोई पंक्ति में प्रवेश नहीं कर सकते हैं . से अधिक है या वर्तमान पंक्ति के बराबर नहीं . इस आरोप प्रकार के लिए -You cannot deduct when category is for 'Valuation' or 'Valuation and Total',श्रेणी ' मूल्यांकन ' या ' मूल्यांकन और कुल ' के लिए है जब आप घटा नहीं सकते -You cannot directly enter Amount and if your Charge Type is Actual enter your amount in Rate,आप सीधे राशि दर्ज करें और अपने आरोप प्रकार वास्तविक है अगर दर में आपकी राशि में प्रवेश नहीं कर सकते -You cannot give more than , -You cannot select Charge Type as 'On Previous Row Amount' or 'On Previous Row Total' for first row,"आप पहली पंक्ति के लिए ' पिछली पंक्ति कुल पर ', ' पिछली पंक्ति पर राशि ' या के रूप में प्रभारी प्रकार का चयन नहीं कर सकते" -You cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for valuation. You can select only 'Total' option for previous row amount or previous row total,"आप मूल्यांकन के लिए ' पिछली पंक्ति कुल पर ', ' पिछली पंक्ति पर राशि ' या के रूप में कार्यभार प्रकार का चयन नहीं कर सकते हैं . आप पिछली पंक्ति राशि या पिछली पंक्ति कुल के लिए केवल ' कुल ' विकल्प का चयन कर सकते हैं" +You cannot credit and debit same account at the same time.,आप क्रेडिट और एक ही समय में एक ही खाते से डेबिट नहीं कर सकते हैं . You have entered duplicate items. Please rectify and try again.,आप डुप्लिकेट आइटम दर्ज किया है . सुधारने और पुन: प्रयास करें . -You may need to update: ,आप अद्यतन करने की आवश्यकता हो सकती है: -You must , +You may need to update: {0},आप अद्यतन करना पड़ सकता है: {0} +You must Save the form before proceeding,आगे बढ़ने से पहले फार्म सहेजना चाहिए Your Customer's TAX registration numbers (if applicable) or any general information,अपने ग्राहक कर पंजीकरण संख्या (यदि लागू हो) या किसी भी सामान्य जानकारी Your Customers,अपने ग्राहकों -Your ERPNext subscription will,आपकी ERPNext सदस्यता होगा Your Products or Services,अपने उत्पादों या सेवाओं Your Suppliers,अपने आपूर्तिकर्ताओं +"Your download is being built, this may take a few moments...","आपका डाउनलोड का निर्माण किया जा रहा है, इसमें कुछ समय लग सकता है ..." Your sales person who will contact the customer in future,अपनी बिक्री व्यक्ति जो भविष्य में ग्राहकों से संपर्क करेंगे Your sales person will get a reminder on this date to contact the customer,अपनी बिक्री व्यक्ति इस तिथि पर एक चेतावनी प्राप्त करने के लिए ग्राहकों से संपर्क करेंगे Your setup is complete. Refreshing...,आपकी सेटअप पूरा हो गया है . रिफ्रेशिंग ... Your support email id - must be a valid email - this is where your emails will come!,आपका समर्थन ईमेल आईडी - एक मान्य ईमेल होना चाहिए - यह है जहाँ आपके ईमेल आ जाएगा! -already available in Price List,मूल्य सूची में पहले से ही उपलब्ध -already returned though some other documents,कुछ अन्य दस्तावेजों हालांकि पहले से ही लौटे -also be included in Item's rate,भी मद की दर में शामिल किया +`Freeze Stocks Older Than` should be smaller than %d days.,` से अधिक उम्र रुक स्टॉक `% d दिनों से कम होना चाहिए . and,और -"and ""Is Sales Item"" is ""Yes"" and there is no other Sales BOM","और "" बिक्री आइटम है "" है ""हाँ "" और कोई अन्य बिक्री बीओएम है" -"and create a new Account Ledger (by clicking on Add Child) of type ""Bank or Cash""","और प्रकार "" बैंक या कैश "" का एक नया खाता लेजर ( पर क्लिक करके चाइल्ड जोड़ने ) बना" -"and create a new Account Ledger (by clicking on Add Child) of type ""Tax"" and do mention the Tax rate.",और प्रकार 'कर' का एक नया खाता लेजर ( पर क्लिक करके चाइल्ड जोड़ने ) बनाने और कर की दर का उल्लेख है. -and fiscal year: , -are not allowed for,के लिए अनुमति नहीं है -are not allowed for , are not allowed.,अनुमति नहीं है. assigned by,द्वारा सौंपा -but entries can be made against Ledger,लेकिन प्रविष्टियों लेजर के खिलाफ किया जा सकता है -but is pending to be manufactured.,लेकिन निर्मित हो लंबित है . -cancel,रद्द करें -cannot be greater than 100,100 से अधिक नहीं हो सकता +comment,टिप्पणी +comments,टिप्पणियां dd-mm-yyyy,डीडी-mm-yyyy dd/mm/yyyy,dd / mm / yyyy -deactivate,निष्क्रिय करें -discount on Item Code,मद कोड पर छूट -does not belong to BOM: ,बीओएम का नहीं है: -does not have role 'Leave Approver',भूमिका 'छोड़ दो अनुमोदक' नहीं है -does not match,मेल नहीं खाता "e.g. Bank, Cash, Credit Card","जैसे बैंक, नकद, क्रेडिट कार्ड" "e.g. Kg, Unit, Nos, m","जैसे किलोग्राम, यूनिट, ओपन स्कूल, मीटर" eg. Cheque Number,उदा. चेक संख्या example: Next Day Shipping,उदाहरण: अगले दिन शिपिंग -has already been submitted.,पहले से ही प्रस्तुत किया गया है . -has been entered atleast twice,कम से कम दो बार दर्ज किया गया -has been made after posting date,तिथि पोस्टिंग के बाद किया गया है -has expired,समाप्त हो गया है -have a common territory,एक सामान्य क्षेत्र है -in the same UOM.,एक ही UOM में . -is a cancelled Item,रद्द आइटम -is not a Stock Item,स्टॉक आइटम नहीं है +found,पाया +is not allowed.,अनुमति नहीं है. lft,LFT mm-dd-yyyy,mm-dd-yyyy mm/dd/yyyy,dd / mm / yyyy -must be a Liability account,एक दायित्व खाता होना चाहिए -must be one of,में से एक होना चाहिए -not a purchase item,नहीं एक खरीद आइटम -not a sales item,एक बिक्री आइटम नहीं -not a service item.,नहीं एक सेवा मद. -not a sub-contracted item.,नहीं एक उप अनुबंधित मद. -not submitted,प्रस्तुत नहीं -not within Fiscal Year,नहीं वित्त वर्ष के भीतर -of,की old_parent,old_parent -reached its end of life on,पर अपने जीवन के अंत तक पहुँच +or,या rgt,rgt -should be 100%,100% होना चाहिए -the form before proceeding,आगे बढ़ने से पहले फार्म -they are created automatically from the Customer and Supplier master,वे ग्राहक और आपूर्तिकर्ता मास्टर से स्वचालित रूप से बनाया जाता है -"to be included in Item's rate, it is required that: ","आइटम की दर में शामिल होने के लिए, यह आवश्यक है कि:" -to set the given stock and valuation on this date.,इस तिथि पर दिए स्टॉक और मूल्य निर्धारण स्थापित करने के लिए . -usually as per physical inventory.,आमतौर पर शारीरिक सूची के अनुसार . +to,से +values and dates,मूल्यों और तारीखें website page link,वेबसाइट के पेज लिंक -which is greater than sales order qty ,जो बिक्री आदेश मात्रा से अधिक है yyyy-mm-dd,yyyy-mm-dd +{0} '{1}' not in Fiscal Year {2},{0} ' {1}' नहीं वित्त वर्ष में {2} +{0} Credit limit {0} crossed,{0} क्रेडिट सीमा {0} को पार कर गया +{0} Serial Numbers required for Item {0}. Only {0} provided.,{0} मद के लिए आवश्यक सीरियल नंबर {0} . केवल {0} प्रदान की . +{0} budget for Account {1} against Cost Center {2} will exceed by {3},{0} खाते के लिए बजट {1} लागत केंद्र के खिलाफ {2} {3} से अधिक होगा +{0} created,{0} बनाया +{0} does not belong to Company {1},{0} कंपनी से संबंधित नहीं है {1} +{0} entered twice in Item Tax,{0} मद टैक्स में दो बार दर्ज +{0} is an invalid email address in 'Notification Email Address',{0} ' सूचना ईमेल पते ' में एक अवैध ईमेल पता है +{0} is mandatory,{0} अनिवार्य है +{0} is mandatory for Item {1},{0} मद के लिए अनिवार्य है {1} +{0} is not a stock Item,{0} भंडार वस्तु नहीं है +{0} is not a valid Batch Number for Item {1},{0} आइटम के लिए एक वैध बैच नंबर नहीं है {1} +{0} is not a valid Leave Approver,{0} एक वैध लीव अनुमोदक नहीं है +{0} is not a valid email id,{0} एक मान्य ईमेल आईडी नहीं है +{0} is now the default Fiscal Year. Please refresh your browser for the change to take effect.,{0} अब मूलभूत वित्त वर्ष है . परिवर्तन को प्रभावी बनाने के लिए अपने ब्राउज़र को ताज़ा करें. +{0} is required,{0} के लिए आवश्यक है +{0} must be a Purchased or Sub-Contracted Item in row {1},{0} पंक्ति में एक खरीदे या उप अनुबंधित आइटम होना चाहिए {1} +{0} must be less than or equal to {1},{0} से कम या बराबर होना चाहिए {1} +{0} must have role 'Leave Approver',{0} भूमिका ' लीव अनुमोदक ' होना चाहिए +{0} valid serial nos for Item {1},आइटम के लिए {0} वैध धारावाहिक नग {1} +{0} {1} against Bill {2} dated {3},{0} {1} विधेयक के खिलाफ {2} दिनांक {3} +{0} {1} against Invoice {1},{0} {1} चालान के खिलाफ {1} +{0} {1} has already been submitted,{0} {1} पहले से ही प्रस्तुत किया गया है +{0} {1} has been modified. Please Refresh,{0} {1} संशोधित किया गया है . ताज़ा करें +{0} {1} has been modified. Please refresh,{0} {1} संशोधित किया गया है . ताज़ा करें +{0} {1} has been modified. Please refresh.,{0} {1} संशोधित किया गया है . ताज़ा करें. +{0} {1} is not submitted,{0} {1} प्रस्तुत नहीं किया गया है +{0} {1} must be submitted,{0} {1} प्रस्तुत किया जाना चाहिए +{0} {1} not in any Fiscal Year,{0} {1} नहीं किसी भी वित्त वर्ष में +{0} {1} status is 'Stopped',{0} {1} स्थिति ' रूका ' है +{0} {1} status is Stopped,{0} {1} स्थिति बंद कर दिया है +{0} {1} status is Unstopped,{0} {1} स्थिति unstopped है