diff --git a/.mergify.yml b/.mergify.yml index 5e558062048..95763b27cb2 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -88,7 +88,6 @@ pull_request_rules: actions: merge: method: squash - commit_message_template: | - {{ title }} (#{{ number }}) - - {{ body }} + commit_message_format: + title: pr-title + body: pr-body diff --git a/crowdin.yml b/crowdin.yml index 3782fb6dd32..7c1ce470fb7 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -12,3 +12,5 @@ append_commit_message: false languages_mapping: two_letters_code: pt-BR: pt_BR + zh-CN: zh + zh-TW: zh_TW diff --git a/erpnext/accounts/doctype/account/account.py b/erpnext/accounts/doctype/account/account.py index ebfb2d0bcee..6ed89c22f24 100644 --- a/erpnext/accounts/doctype/account/account.py +++ b/erpnext/accounts/doctype/account/account.py @@ -121,6 +121,7 @@ class Account(NestedSet): self.validate_account_currency() self.validate_root_company_and_sync_account_to_children() self.validate_receivable_payable_account_type() + self.validate_stock_account_type_change() def validate_parent_child_account_type(self): if self.parent_account: @@ -212,6 +213,36 @@ class Account(NestedSet): frappe.msgprint(msg) self.add_comment("Comment", msg) + def validate_stock_account_type_change(self): + doc_before_save = self.get_doc_before_save() + if not (doc_before_save and doc_before_save.account_type == "Stock"): + return + + if self.account_type == "Stock": + return + + if self.stock_ledger_entry_exists(): + frappe.throw( + _( + "The account type of {0} cannot be changed from {1} because stock ledger entries exist against it." + ).format(frappe.bold(self.name), frappe.bold(_("Stock"))) + ) + + def stock_ledger_entry_exists(self): + from erpnext.stock import get_warehouse_account_map + + warehouse_account = get_warehouse_account_map(self.company) + warehouses = [wh for wh, details in warehouse_account.items() if details.account == self.name] + if not warehouses: + return False + + return bool( + frappe.db.count( + "Stock Ledger Entry", + filters={"warehouse": ("in", warehouses), "is_cancelled": 0}, + ) + ) + def validate_root_details(self): doc_before_save = self.get_doc_before_save() @@ -659,8 +690,15 @@ def _ensure_idle_system(): last_gl_update = None try: - # We also lock inserts to GL entry table with for_update here. - last_gl_update = frappe.db.get_value("GL Entry", {}, "modified", for_update=True, wait=False) + if frappe.db.db_type == "postgres": + # The MariaDB branch blocks new GL inserts via the gap lock its for_update read takes; + # a postgres row lock never blocks inserts, so take an EXCLUSIVE table lock instead -- + # writers block until the rename commits, readers don't. NOWAIT mirrors wait=False. + frappe.db.sql("LOCK TABLE `tabGL Entry` IN EXCLUSIVE MODE NOWAIT") + last_gl_update = frappe.db.get_value("GL Entry", {}, "modified") + else: + # We also lock inserts to GL entry table with for_update here. + last_gl_update = frappe.db.get_value("GL Entry", {}, "modified", for_update=True, wait=False) except frappe.QueryTimeoutError: # wait=False fails immediately if there's an active transaction. last_gl_update = add_to_date(None, seconds=-1) diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/au_standard_chart_of_accounts.json b/erpnext/accounts/doctype/account/chart_of_accounts/verified/au_standard_chart_of_accounts.json index 515a1e4de9d..a55dd3a183d 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/au_standard_chart_of_accounts.json +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/au_standard_chart_of_accounts.json @@ -24,7 +24,8 @@ "account_number": "11530" }, "account_number": "115", - "is_group": 1 + "is_group": 1, + "account_type": "Bank" }, "Trade Receivables": { "Trade Debtors": { @@ -529,6 +530,13 @@ "account_number": "630", "is_group": 1 }, + "Accrued Manufacturing Expenses": { + "Accrued Expenses - Manufacturing": { + "account_number": "63510" + }, + "account_number": "635", + "is_group": 1 + }, "account_number": "63", "is_group": 1 }, @@ -814,4 +822,4 @@ "root_type": "Expense" } } -} \ No newline at end of file +} diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/philippines.json b/erpnext/accounts/doctype/account/chart_of_accounts/verified/philippines.json index 30a3baf83e2..312c3832f54 100644 --- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/philippines.json +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/philippines.json @@ -22,12 +22,12 @@ "account_type": "Cash" }, "Petty Cash Fund": { - "account_number": "1200", + "account_number": "1110", "is_group": 1, "root_type": "Asset", "account_type": "Cash", "Petty Cash Fund": { - "account_number": "1201", + "account_number": "1111", "is_group": 0, "root_type": "Asset", "account_type": "Cash" @@ -35,10 +35,16 @@ } }, "Bank Accounts": { - "account_number": "1102", + "account_number": "1200", "is_group": 1, "root_type": "Asset", - "account_type": "Bank" + "account_type": "Bank", + "Cash in Bank - Checking Account": { + "account_number": "1201", + "is_group": 0, + "root_type": "Asset", + "account_type": "Bank" + } }, "Advances to Officers & Employees": { "account_number": "1290", @@ -104,25 +110,20 @@ "account_number": "1511", "is_group": 0, "root_type": "Asset" - }, - "Factory Overhead Variance": { - "account_number": "1512", - "is_group": 0, - "root_type": "Asset" } }, "Finished Goods": { - "account_number": "1520", + "account_number": "1540", "is_group": 1, "root_type": "Asset", "Finished Goods Inventory": { - "account_number": "1531", + "account_number": "1541", "is_group": 0, "root_type": "Asset", "account_type": "Stock" }, "Inventory in Transit": { - "account_number": "1532", + "account_number": "1542", "is_group": 0, "root_type": "Asset", "account_type": "Stock Adjustment" @@ -268,7 +269,7 @@ "root_type": "Asset" } }, - "System Development": { + "Intangible Assets": { "account_number": "1940", "is_group": 1, "root_type": "Asset", @@ -277,6 +278,17 @@ "is_group": 0, "root_type": "Asset" } + }, + "Accumulated Amortization - Intangible Assets": { + "account_number": "1950", + "is_group": 1, + "root_type": "Asset", + "Accum Amortization - System Development": { + "account_number": "1951", + "is_group": 0, + "root_type": "Asset", + "account_type": "Accumulated Depreciation" + } } } }, @@ -406,8 +418,7 @@ "Customer Deposits": { "account_number": "2500", "is_group": 0, - "root_type": "Liability", - "account_type": "Payable" + "root_type": "Liability" } }, "Non Current Liabilities": { @@ -563,6 +574,28 @@ "is_group": 0, "root_type": "Income" } + }, + "Exchange Gain": { + "account_number": "6030", + "is_group": 1, + "root_type": "Income", + "Exchange Gain - Detail": { + "account_number": "6031", + "is_group": 0, + "root_type": "Income", + "account_type": "Indirect Income" + } + }, + "Gain on Asset Disposal": { + "account_number": "6040", + "is_group": 1, + "root_type": "Income", + "Gain on Asset Disposal - Detail": { + "account_number": "6041", + "is_group": 0, + "root_type": "Income", + "account_type": "Indirect Income" + } } } }, @@ -575,7 +608,7 @@ "is_group": 1, "root_type": "Expense", "Cost of Goods Sold": { - "account_number": "5010", + "account_number": "5002", "is_group": 0, "root_type": "Expense", "account_type": "Cost of Goods Sold" @@ -828,20 +861,61 @@ "root_type": "Expense" } }, - "Stock Adjustment": { + "Other Expenses": { "account_number": "5200", + "is_group": 1, + "root_type": "Expense", + "Bank Charges": { + "account_number": "5201", + "is_group": 0, + "root_type": "Expense", + "account_type": "Indirect Expense" + }, + "Interest Expenses Bank": { + "account_number": "5202", + "is_group": 0, + "root_type": "Expense", + "account_type": "Indirect Expense" + }, + "Write Off": { + "account_number": "5203", + "is_group": 0, + "root_type": "Expense", + "account_type": "Indirect Expense" + }, + "Exchange Loss": { + "account_number": "5204", + "is_group": 0, + "root_type": "Expense", + "account_type": "Indirect Expense" + }, + "Loss on Asset Disposal": { + "account_number": "5205", + "is_group": 0, + "root_type": "Expense", + "account_type": "Indirect Expense" + } + }, + "Provision For Income Tax": { + "account_number": "5300", + "is_group": 0, + "root_type": "Expense", + "account_type": "Tax" + }, + "Stock Adjustment": { + "account_number": "5400", "is_group": 0, "root_type": "Expense", "account_type": "Stock Adjustment" }, "Round Off": { - "account_number": "5300", + "account_number": "5500", "is_group": 0, "root_type": "Expense", "account_type": "Round Off" }, "Expenses Included In Valuation": { - "account_number": "5400", + "account_number": "5600", "is_group": 0, "root_type": "Expense", "account_type": "Expenses Included In Valuation" diff --git a/erpnext/accounts/doctype/account/test_account.py b/erpnext/accounts/doctype/account/test_account.py index cdc278567a5..be592d78b43 100644 --- a/erpnext/accounts/doctype/account/test_account.py +++ b/erpnext/accounts/doctype/account/test_account.py @@ -306,6 +306,31 @@ class TestAccount(ERPNextTestSuite): acc.account_currency = "USD" self.assertRaises(frappe.ValidationError, acc.save) + def test_stock_account_type_change_with_ledger_entries(self): + from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry + + company = "_Test Company with perpetual inventory" + warehouse = "Stores - TCP1" + stock_account = get_warehouse_account(frappe.get_doc("Warehouse", warehouse)) + + make_stock_entry( + item_code="_Test Item", + target=warehouse, + company=company, + qty=5, + basic_rate=100, + ) + + account = frappe.get_doc("Account", stock_account) + self.assertEqual(account.account_type, "Stock") + + account.account_type = "" + self.assertRaises(frappe.ValidationError, account.save) + + account.reload() + account.account_name = f"{account.account_name} Updated" + account.save() # non-type change stays allowed + def test_account_balance(self): from erpnext.accounts.utils import get_balance_on diff --git a/erpnext/accounts/doctype/accounts_settings/accounts_settings.json b/erpnext/accounts/doctype/accounts_settings/accounts_settings.json index da92cdd5b0a..1c7a4d488e5 100644 --- a/erpnext/accounts/doctype/accounts_settings/accounts_settings.json +++ b/erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -22,6 +22,8 @@ "allow_multi_currency_invoices_against_single_party_account", "confirm_before_resetting_posting_date", "preview_mode", + "stock_expense_section", + "book_stock_expense_gl_entries", "analytics_section", "enable_discounts_and_margin", "enable_accounting_dimensions", @@ -76,6 +78,8 @@ "over_billing_allowance", "credit_controller", "role_allowed_to_over_bill", + "enable_overdue_billing_threshold", + "role_allowed_to_bypass_overdue_billing", "column_break_11", "assets_tab", "asset_settings_section", @@ -272,6 +276,21 @@ "label": "Role Allowed to over bill ", "options": "Role" }, + { + "default": "0", + "description": "Block a new Sales Invoice when the customer's overdue amount exceeds the Overdue Limit set on the customer.", + "fieldname": "enable_overdue_billing_threshold", + "fieldtype": "Check", + "label": "Restrict Customer Over Billing" + }, + { + "depends_on": "eval:doc.enable_overdue_billing_threshold", + "description": "Users with this role can still submit invoices for customers who have crossed their Overdue Limit.", + "fieldname": "role_allowed_to_bypass_overdue_billing", + "fieldtype": "Link", + "label": "Role Allowed to Bypass Over Billing Restriction", + "options": "Role" + }, { "fieldname": "period_closing_settings_section", "fieldtype": "Section Break" @@ -757,6 +776,18 @@ "description": "Changing the account in any transaction of the DocTypes listed below will trigger a repost. To prevent reposting, remove the relevant DocType from the list.", "fieldname": "column_break_mfor", "fieldtype": "Column Break" + }, + { + "fieldname": "stock_expense_section", + "fieldtype": "Section Break", + "label": "Stock Expense Accounting" + }, + { + "default": "0", + "description": "Books Purchase Expense and Expenses Added To Stock account pairs against stock value. On enabling this, the accounts become mandatory in Company or Item Defaults for Purchase Receipt, Purchase Invoice, Stock Entry, Stock Reconciliation and Landed Cost Voucher", + "fieldname": "book_stock_expense_gl_entries", + "fieldtype": "Check", + "label": "Book Stock Expense GL Entries" } ], "grid_page_length": 50, @@ -765,7 +796,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2026-06-24 12:59:41.868865", + "modified": "2026-07-15 17:00:00.000000", "modified_by": "Administrator", "module": "Accounts", "name": "Accounts Settings", diff --git a/erpnext/accounts/doctype/accounts_settings/accounts_settings.py b/erpnext/accounts/doctype/accounts_settings/accounts_settings.py index c56d39ad8d9..b46f01152aa 100644 --- a/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +++ b/erpnext/accounts/doctype/accounts_settings/accounts_settings.py @@ -62,6 +62,7 @@ class AccountsSettings(Document): book_asset_depreciation_entry_automatically: DF.Check book_deferred_entries_based_on: DF.Literal["Days", "Months"] book_deferred_entries_via_journal_entry: DF.Check + book_stock_expense_gl_entries: DF.Check book_tax_discount_loss: DF.Check calculate_depr_using_total_days: DF.Check check_supplier_invoice_uniqueness: DF.Check @@ -77,6 +78,7 @@ class AccountsSettings(Document): enable_fuzzy_matching: DF.Check enable_immutable_ledger: DF.Check enable_loyalty_point_program: DF.Check + enable_overdue_billing_threshold: DF.Check enable_party_matching: DF.Check enable_subscription: DF.Check exchange_gain_loss_posting_date: DF.Literal["Invoice", "Payment", "Reconciliation Date"] @@ -96,6 +98,7 @@ class AccountsSettings(Document): receivable_payable_remarks_length: DF.Int reconciliation_queue_size: DF.Int repost_allowed_types: DF.Table[RepostAllowedTypes] + role_allowed_to_bypass_overdue_billing: DF.Link | None role_allowed_to_over_bill: DF.Link | None role_to_notify_on_depreciation_failure: DF.Link | None role_to_override_stop_action: DF.Link | None @@ -151,6 +154,10 @@ class AccountsSettings(Document): toggle_subscription_sections(not self.enable_subscription) clear_cache = True + if old_doc.enable_overdue_billing_threshold != self.enable_overdue_billing_threshold: + toggle_overdue_billing_threshold_field(not self.enable_overdue_billing_threshold) + clear_cache = True + if clear_cache: frappe.clear_cache() @@ -242,6 +249,10 @@ def toggle_subscription_sections(hide): create_property_setter_for_hiding_field(doctype, "subscription_section", hide) +def toggle_overdue_billing_threshold_field(hide): + create_property_setter_for_hiding_field("Customer Credit Limit", "overdue_billing_threshold", hide) + + def create_property_setter_for_hiding_field(doctype, field_name, hide): make_property_setter( doctype, diff --git a/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json b/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json index c34b21f7a91..d7b68b42860 100644 --- a/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +++ b/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json @@ -54,7 +54,6 @@ "fieldtype": "Currency", "in_list_view": 1, "label": "Closing Balance", - "non_negative": 1, "options": "currency" }, { @@ -191,7 +190,7 @@ "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2026-05-08 17:55:25.615942", + "modified": "2026-07-09 17:55:25.615942", "modified_by": "Administrator", "module": "Accounts", "name": "Bank Statement Import Log", diff --git a/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py b/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py index 9441ddc429d..468bce0e1fd 100644 --- a/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py +++ b/erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py @@ -557,7 +557,7 @@ class BankStatementImportLog(Document): docname=self.name, ) - if self.closing_balance and self.closing_balance > 0 and self.end_date: + if self.closing_balance is not None and self.end_date: set_closing_balance_as_per_statement( self.bank_account, frappe.utils.getdate(self.end_date), self.closing_balance ) diff --git a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py index b7a84f25f11..fcca5db8197 100644 --- a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py +++ b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py @@ -220,6 +220,7 @@ def build_forest(data): for row in data: account_name, parent_account, account_number, parent_account_number = row[0:4] if account_number: + account_number = cstr(account_number).strip() account_name = f"{account_number} - {account_name}" if parent_account_number: parent_account_number = cstr(parent_account_number).strip() diff --git a/erpnext/accounts/doctype/dunning/dunning.js b/erpnext/accounts/doctype/dunning/dunning.js index cd928a414c1..69458652761 100644 --- a/erpnext/accounts/doctype/dunning/dunning.js +++ b/erpnext/accounts/doctype/dunning/dunning.js @@ -169,23 +169,10 @@ frappe.ui.form.on("Dunning", { }, get_dunning_letter_text: function (frm) { if (frm.doc.dunning_type) { - frappe.call({ - method: "erpnext.accounts.doctype.dunning.dunning.get_dunning_letter_text", - args: { - dunning_type: frm.doc.dunning_type, - language: frm.doc.language, - doc: frm.doc, - }, - callback: function (r) { - if (r.message) { - frm.set_value("body_text", r.message.body_text); - frm.set_value("closing_text", r.message.closing_text); - frm.set_value("language", r.message.language); - } else { - frm.set_value("body_text", ""); - frm.set_value("closing_text", ""); - } - }, + frm.call("get_dunning_letter_text").then((r) => { + if (!r.exc) { + frm.refresh_fields(); + } }); } }, diff --git a/erpnext/accounts/doctype/dunning/dunning.py b/erpnext/accounts/doctype/dunning/dunning.py index 2a4bd381729..dbe8ebcbcd2 100644 --- a/erpnext/accounts/doctype/dunning/dunning.py +++ b/erpnext/accounts/doctype/dunning/dunning.py @@ -163,6 +163,46 @@ class Dunning(AccountsController): "Serial and Batch Bundle", ] + @frappe.whitelist() + def get_dunning_letter_text(self): + DOCTYPE = "Dunning Letter Text" + FIELDS = ["body_text", "closing_text", "language"] + + if not self.dunning_type: + return + + filters = {"parent": self.dunning_type, "is_default_language": 1} + + if self.language: + filters.pop("is_default_language") + filters["language"] = self.language + + letter_text = frappe.db.get_value(DOCTYPE, filters, FIELDS, as_dict=True) + + if not letter_text: + msg = ( + _("Dunning Letter for Dunning Type {0} in language '{1}' not found.").format( + frappe.bold(self.dunning_type), frappe.bold(self.language) + ) + if self.language + else _("Dunning Letter for Dunning Type {0} not found.").format( + frappe.bold(self.dunning_type) + ) + ) + frappe.msgprint(msg, alert=True, indicator="yellow") + + self.body_text = ( + frappe.render_template(letter_text.body_text, self.as_dict(), restrict_globals=True) + if letter_text + else None + ) + self.closing_text = ( + frappe.render_template(letter_text.closing_text, self.as_dict(), restrict_globals=True) + if letter_text + else None + ) + self.language = letter_text.language if letter_text else self.language + def update_linked_dunnings(doc, previous_outstanding_amount): if ( @@ -241,34 +281,3 @@ def get_linked_dunnings_as_per_state(sales_invoice, state): & (overdue_payment.sales_invoice == sales_invoice) ) ).run(as_dict=True) - - -@frappe.whitelist() -def get_dunning_letter_text(dunning_type: str, doc: str | dict, language: str | None = None) -> dict: - DOCTYPE = "Dunning Letter Text" - FIELDS = ["body_text", "closing_text", "language"] - - doc = frappe.parse_json(doc) - - if not language: - language = doc.get("language") - - letter_text = None - if language: - letter_text = frappe.db.get_value( - DOCTYPE, {"parent": dunning_type, "language": language}, FIELDS, as_dict=1 - ) - - if not letter_text: - letter_text = frappe.db.get_value( - DOCTYPE, {"parent": dunning_type, "is_default_language": 1}, FIELDS, as_dict=1 - ) - - if not letter_text: - return {} - - return { - "body_text": frappe.render_template(letter_text.body_text, doc), - "closing_text": frappe.render_template(letter_text.closing_text, doc), - "language": letter_text.language, - } diff --git a/erpnext/accounts/doctype/dunning_type/dunning_type.py b/erpnext/accounts/doctype/dunning_type/dunning_type.py index 77f2e004e3d..f267ee5b9a1 100644 --- a/erpnext/accounts/doctype/dunning_type/dunning_type.py +++ b/erpnext/accounts/doctype/dunning_type/dunning_type.py @@ -3,7 +3,10 @@ import frappe +from frappe import _ from frappe.model.document import Document +from frappe.utils import comma_and +from frappe.utils.jinja import validate_template class DunningType(Document): @@ -30,3 +33,134 @@ class DunningType(Document): def autoname(self): company_abbr = frappe.get_value("Company", self.company, "abbr") self.name = f"{self.dunning_type} - {company_abbr}" + + def validate(self): + self.validate_dunning_letter_text() + self.validate_income_account() + self.validate_cost_center() + self.set_default_dunning_type() + + def validate_dunning_letter_text(self): + self.validate_languages() + self.validate_is_default_language() + self.validate_dunning_letter_text_templates() + + def validate_income_account(self): + if not self.income_account: + return + + account = frappe.get_cached_doc("Account", self.income_account) + + msg = [] + if account.company != self.company: + msg.append( + _( + "{0} doesn't belong to Company {1}. Please select an Income Account that belongs to Company {1}." + ).format(frappe.bold(self.income_account), frappe.bold(self.company)) + ) + + if account.disabled: + msg.append( + _("{0} is disabled. Please select a valid Income Account.").format( + frappe.bold(self.income_account) + ) + ) + + if account.root_type != "Income": + msg.append( + _("{0} is not an Income Account. Please select a valid Income Account.").format( + frappe.bold(self.income_account) + ) + ) + + if account.is_group: + msg.append( + _("{0} is a group account. Please select a non-group Income Account.").format( + frappe.bold(self.income_account) + ) + ) + + if msg: + frappe.msgprint( + msg, + title=_("Income Account Validation Error"), + as_list=True, + raise_exception=frappe.ValidationError, + ) + + def validate_cost_center(self): + if not self.cost_center: + return + + cost_center = frappe.get_cached_doc("Cost Center", self.cost_center) + + msg = [] + if cost_center.company != self.company: + msg.append( + _( + "{0} doesn't belong to Company {1}. Please select a Cost Center that belongs to Company {1}." + ).format(frappe.bold(self.cost_center), frappe.bold(self.company)) + ) + + if cost_center.disabled: + msg.append( + _("{0} is disabled. Please select an enabled Cost Center.").format( + frappe.bold(self.cost_center) + ) + ) + + if cost_center.is_group: + msg.append( + _("{0} is a group Cost Center. Please select a non-group Cost Center.").format( + frappe.bold(self.cost_center) + ) + ) + + if msg: + frappe.msgprint( + msg, + title=_("Cost Center Validation Error"), + as_list=True, + raise_exception=frappe.ValidationError, + ) + + def validate_languages(self): + languages = [d.language for d in self.dunning_letter_text] + + if len(languages) == len(set(languages)): + return + + frappe.throw(_("Duplicate languages found on Dunning Letter Text. Keep only one of them.")) + + def validate_is_default_language(self): + is_default_language_list = [ + d.language for d in self.dunning_letter_text if d.is_default_language == 1 + ] + + if len(is_default_language_list) <= 1: + return + + frappe.throw( + _("{0} languages are marked as default languages. Please select only one of them.").format( + comma_and(is_default_language_list, add_quotes=True) + ) + ) + + def validate_dunning_letter_text_templates(self): + for d in self.dunning_letter_text: + if d.body_text: + validate_template(d.body_text, restrict_globals=True) + + if d.closing_text: + validate_template(d.closing_text, restrict_globals=True) + + def set_default_dunning_type(self): + if self.is_default != 1: + return + + frappe.db.set_value( + "Dunning Type", + {"company": self.company, "is_default": 1, "name": ["!=", self.name]}, + "is_default", + 0, + ) diff --git a/erpnext/accounts/doctype/dunning_type/test_dunning_type.py b/erpnext/accounts/doctype/dunning_type/test_dunning_type.py index 1e58e56570b..94c30fe089b 100644 --- a/erpnext/accounts/doctype/dunning_type/test_dunning_type.py +++ b/erpnext/accounts/doctype/dunning_type/test_dunning_type.py @@ -1,9 +1,200 @@ # Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors # See license.txt -# import frappe + +import frappe from erpnext.tests.utils import ERPNextTestSuite +def make_dunning_type(dunning_type, company="_Test Company", **kwargs): + doc = frappe.new_doc("Dunning Type") + doc.dunning_type = dunning_type + doc.company = company + doc.dunning_fee = kwargs.get("dunning_fee", 100) + doc.rate_of_interest = kwargs.get("rate_of_interest", 5) + doc.is_default = kwargs.get("is_default", 0) + + if "income_account" in kwargs: + doc.income_account = kwargs["income_account"] + elif kwargs.get("income_account") is not False: + doc.income_account = "Sales - _TC" if company == "_Test Company" else "Sales - _TC1" + + if "cost_center" in kwargs: + doc.cost_center = kwargs["cost_center"] + elif kwargs.get("cost_center") is not False: + doc.cost_center = "Main - _TC" if company == "_Test Company" else "Main - _TC1" + + for row in kwargs.get("dunning_letter_text", [{"language": "en", "body_text": "Test body"}]): + doc.append("dunning_letter_text", row) + + return doc + + class TestDunningType(ERPNextTestSuite): - pass + def test_income_account_must_belong_to_company(self): + doc = make_dunning_type("_Test Dunning Wrong Company Account", income_account="Sales - _TC1") + self.assertRaisesRegex(frappe.ValidationError, "doesn't belong to Company", doc.insert) + + def test_income_account_must_not_be_disabled(self): + disabled_account = frappe.get_doc( + { + "doctype": "Account", + "account_name": "_Test Disabled Income Account", + "parent_account": "Direct Income - _TC", + "company": "_Test Company", + "account_type": "Income Account", + "disabled": 1, + } + ).insert() + + doc = make_dunning_type("_Test Dunning Disabled Account", income_account=disabled_account.name) + self.assertRaisesRegex(frappe.ValidationError, "is disabled", doc.insert) + + def test_income_account_must_be_income_type(self): + doc = make_dunning_type("_Test Dunning Non Income Account", income_account="Debtors - _TC") + self.assertRaisesRegex(frappe.ValidationError, "is not an Income Account", doc.insert) + + def test_income_account_must_not_be_group(self): + doc = make_dunning_type("_Test Dunning Group Account", income_account="Income - _TC") + self.assertRaisesRegex(frappe.ValidationError, "is a group account", doc.insert) + + def test_income_account_is_optional(self): + doc = make_dunning_type("_Test Dunning No Income Account", income_account=False) + doc.insert() + self.assertFalse(doc.income_account) + + def test_valid_income_account_passes(self): + doc = make_dunning_type("_Test Dunning Valid Income Account", income_account="Sales - _TC") + doc.insert() + self.assertEqual(doc.income_account, "Sales - _TC") + + def test_cost_center_must_belong_to_company(self): + doc = make_dunning_type("_Test Dunning Wrong Company CC", cost_center="Main - _TC1") + self.assertRaisesRegex(frappe.ValidationError, "doesn't belong to Company", doc.insert) + + def test_cost_center_must_not_be_disabled(self): + disabled_cc = frappe.get_doc( + { + "doctype": "Cost Center", + "cost_center_name": "_Test Disabled Cost Center", + "parent_cost_center": "_Test Company - _TC", + "company": "_Test Company", + "disabled": 1, + } + ).insert() + + doc = make_dunning_type("_Test Dunning Disabled CC", cost_center=disabled_cc.name) + self.assertRaisesRegex(frappe.ValidationError, "is disabled", doc.insert) + + def test_cost_center_must_not_be_group(self): + doc = make_dunning_type("_Test Dunning Group CC", cost_center="_Test Company - _TC") + self.assertRaisesRegex(frappe.ValidationError, "is a group Cost Center", doc.insert) + + def test_cost_center_is_optional(self): + doc = make_dunning_type("_Test Dunning No CC", cost_center=False) + doc.insert() + self.assertFalse(doc.cost_center) + + def test_valid_cost_center_passes(self): + doc = make_dunning_type("_Test Dunning Valid CC", cost_center="Main - _TC") + doc.insert() + self.assertEqual(doc.cost_center, "Main - _TC") + + def test_duplicate_languages_not_allowed(self): + doc = make_dunning_type( + "_Test Dunning Duplicate Language", + dunning_letter_text=[ + {"language": "en", "body_text": "Body one"}, + {"language": "en", "body_text": "Body two"}, + ], + ) + self.assertRaisesRegex(frappe.ValidationError, "Duplicate languages found", doc.insert) + + def test_unique_languages_allowed(self): + doc = make_dunning_type( + "_Test Dunning Unique Languages", + dunning_letter_text=[ + {"language": "en", "body_text": "Body one"}, + {"language": "de", "body_text": "Body two"}, + ], + ) + doc.insert() + self.assertEqual(len(doc.dunning_letter_text), 2) + + def test_only_one_default_language_allowed(self): + doc = make_dunning_type( + "_Test Dunning Multiple Default Language", + dunning_letter_text=[ + {"language": "en", "body_text": "Body one", "is_default_language": 1}, + {"language": "de", "body_text": "Body two", "is_default_language": 1}, + ], + ) + self.assertRaisesRegex( + frappe.ValidationError, "languages are marked as default languages", doc.insert + ) + + def test_single_default_language_allowed(self): + doc = make_dunning_type( + "_Test Dunning Single Default Language", + dunning_letter_text=[ + {"language": "en", "body_text": "Body one", "is_default_language": 1}, + {"language": "de", "body_text": "Body two", "is_default_language": 0}, + ], + ) + doc.insert() + self.assertEqual(doc.dunning_letter_text[0].is_default_language, 1) + + def test_invalid_jinja_template_in_body_text_raises(self): + doc = make_dunning_type( + "_Test Dunning Invalid Body Template", + dunning_letter_text=[{"language": "en", "body_text": "{{ unclosed"}], + ) + self.assertRaisesRegex(frappe.ValidationError, "Syntax error in template", doc.insert) + + def test_invalid_jinja_template_in_closing_text_raises(self): + doc = make_dunning_type( + "_Test Dunning Invalid Closing Template", + dunning_letter_text=[ + {"language": "en", "body_text": "Valid body", "closing_text": "{{ unclosed"} + ], + ) + self.assertRaisesRegex(frappe.ValidationError, "Syntax error in template", doc.insert) + + def test_valid_jinja_template_passes(self): + doc = make_dunning_type( + "_Test Dunning Valid Template", + dunning_letter_text=[ + { + "language": "en", + "body_text": "Outstanding amount is {{ outstanding_amount }}", + "closing_text": "Regards, {{ company }}", + } + ], + ) + doc.insert() + self.assertTrue(doc.name) + + def test_set_default_dunning_type_unsets_previous_default(self): + first = make_dunning_type("_Test Dunning Default One", is_default=1) + first.insert() + self.assertEqual(frappe.db.get_value("Dunning Type", first.name, "is_default"), 1) + + second = make_dunning_type("_Test Dunning Default Two", is_default=1) + second.insert() + + self.assertEqual(frappe.db.get_value("Dunning Type", first.name, "is_default"), 0) + self.assertEqual(frappe.db.get_value("Dunning Type", second.name, "is_default"), 1) + + def test_set_default_dunning_type_scoped_per_company(self): + company_1 = make_dunning_type("_Test Dunning Default Co1", is_default=1) + company_1.insert() + + company_2 = make_dunning_type( + "_Test Dunning Default Co2", + company="_Test Company 1", + is_default=1, + ) + company_2.insert() + + self.assertEqual(frappe.db.get_value("Dunning Type", company_1.name, "is_default"), 1) + self.assertEqual(frappe.db.get_value("Dunning Type", company_2.name, "is_default"), 1) diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js index 2637e49d00a..fac8b582a22 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js @@ -22,17 +22,27 @@ frappe.ui.form.on("Exchange Rate Revaluation", { refresh: function (frm) { if (frm.doc.docstatus == 1) { frappe.call({ - method: "check_journal_entry_condition", + method: "check_journal_and_reversal", doc: frm.doc, callback: function (r) { if (r.message) { - frm.add_custom_button( - __("Journal Entries"), - function () { - return frm.events.make_jv(frm); - }, - __("Create") - ); + if (!r.message.journals_posted) { + frm.add_custom_button( + __("Journal Entries"), + function () { + return frm.events.make_jv(frm); + }, + __("Create") + ); + } else if (!r.message.reversals_posted) { + frm.add_custom_button( + __("Reversal Journal Entries"), + function () { + return frm.events.make_reverse_journal(frm); + }, + __("Create") + ); + } } }, }); @@ -100,6 +110,14 @@ frappe.ui.form.on("Exchange Rate Revaluation", { }, }); }, + make_reverse_journal: function (frm) { + frappe.call({ + method: "make_reverse_journal", + doc: frm.doc, + freeze: true, + freeze_message: __("Reversing Journals..."), + }); + }, }); frappe.ui.form.on("Exchange Rate Revaluation Account", { diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py index 0ed30eaee52..84ba411c97f 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py @@ -9,7 +9,7 @@ from frappe.model.document import Document from frappe.model.meta import get_field_precision from frappe.query_builder import Criterion, Order from frappe.query_builder.functions import Max, NullIf, Sum -from frappe.utils import flt, get_link_to_form +from frappe.utils import flt, get_link_to_form, nowdate import erpnext from erpnext.accounts.doctype.journal_entry.journal_entry import get_balance_on @@ -91,25 +91,31 @@ class ExchangeRateRevaluation(Document): ) def on_cancel(self): - self.ignore_linked_doctypes = "GL Entry" + self.ignore_linked_doctypes = ["GL Entry", "Payment Ledger Entry"] @frappe.whitelist() - def check_journal_entry_condition(self): + def check_journal_and_reversal(self): exchange_gain_loss_account = self.get_for_unrealized_gain_loss_account() + journals_posted = False + reversals_posted = False + + je = qb.DocType("Journal Entry") jea = qb.DocType("Journal Entry Account") journals = ( - qb.from_(jea) - .select(jea.parent) + qb.from_(je) + .join(jea) + .on(je.name == jea.parent) + .select(je.name) .distinct() .where( (jea.reference_type == "Exchange Rate Revaluation") & (jea.reference_name == self.name) & (jea.docstatus == 1) + & (je.reversal_of.isnull()) # omit journals that have reversals ) - .run() + .run(pluck="name") ) - if journals: gle = qb.DocType("GL Entry") total_amt = ( @@ -124,12 +130,31 @@ class ExchangeRateRevaluation(Document): .run() ) - if total_amt and total_amt[0][0] != self.total_gain_loss: - return True + if total_amt and total_amt[0][0] == self.total_gain_loss: + journals_posted = True else: - return False + journals_posted = False - return True + # reverse journals + reverse_journals = ( + qb.from_(je) + .join(jea) + .on(je.name == jea.parent) + .select(je.name) + .where( + (jea.reference_type == "Exchange Rate Revaluation") + & (jea.reference_name == self.name) + & (jea.docstatus == 1) + & (je.reversal_of.notnull()) + ) + .run(pluck="name") + ) + if reverse_journals: + reversals_posted = True + else: + reversals_posted = False + + return {"journals_posted": journals_posted, "reversals_posted": reversals_posted} def fetch_and_calculate_accounts_data(self): accounts = self.get_accounts_data() @@ -347,6 +372,7 @@ class ExchangeRateRevaluation(Document): @frappe.whitelist() def make_jv_entries(self): + frappe.has_permission("Journal Entry", "write", throw=True) zero_balance_jv = self.make_jv_for_zero_balance() if zero_balance_jv: frappe.msgprint( @@ -575,6 +601,38 @@ class ExchangeRateRevaluation(Document): journal_entry.save() return journal_entry + @frappe.whitelist() + def make_reverse_journal(self): + frappe.has_permission("Journal Entry", "write", throw=True) + je = qb.DocType("Journal Entry") + jea = qb.DocType("Journal Entry Account") + journals = ( + qb.from_(je) + .join(jea) + .on(je.name == jea.parent) + .select(je.name) + .distinct() + .where( + (jea.reference_type == "Exchange Rate Revaluation") + & (jea.reference_name == self.name) + & (jea.docstatus == 1) + & (je.reversal_of.isnull()) # omit journals that have reversals + ) + .run(pluck="name") + ) + if journals: + from erpnext.accounts.doctype.journal_entry.mapper import make_reverse_journal_entry + + for x in journals: + reversal = make_reverse_journal_entry(x) + reversal.posting_date = nowdate() + reversal.submit() + frappe.msgprint( + _("Revaluation journal for {0} has been created: {1}").format( + frappe.bold(x), get_link_to_form("Journal Entry", reversal.name) + ) + ) + def calculate_exchange_rate_using_last_gle(company, account, party_type, party): """ diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py index e794311c2cd..3e5b08d069d 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/test_exchange_rate_revaluation.py @@ -132,7 +132,8 @@ class TestExchangeRateRevaluation(ERPNextTestSuite, AccountsTestMixin): err = err.save().submit() # Create JV for ERR - self.assertTrue(err.check_journal_entry_condition()) + ret = err.check_journal_and_reversal() + self.assertFalse(ret.get("journals_posted")) err_journals = err.make_jv_entries() je = frappe.get_doc("Journal Entry", err_journals.get("zero_balance_jv")) je = je.submit() @@ -221,7 +222,8 @@ class TestExchangeRateRevaluation(ERPNextTestSuite, AccountsTestMixin): err = err.save().submit() # Create JV for ERR - self.assertTrue(err.check_journal_entry_condition()) + ret = err.check_journal_and_reversal() + self.assertFalse(ret.get("journals_posted")) err_journals = err.make_jv_entries() je = frappe.get_doc("Journal Entry", err_journals.get("zero_balance_jv")) je = je.submit() @@ -299,6 +301,91 @@ class TestExchangeRateRevaluation(ERPNextTestSuite, AccountsTestMixin): for key, _val in expected_data.items(): self.assertEqual(expected_data.get(key), account_details.get(key)) + @ERPNextTestSuite.change_settings( + "Accounts Settings", + {"allow_multi_currency_invoices_against_single_party_account": 1, "allow_stale": 0}, + ) + def test_05_revaluation_journal_reversal(self): + """ + Test reversing of revaluation journals + """ + si = create_sales_invoice( + item=self.item, + company=self.company, + customer=self.customer, + debit_to=self.debtors_usd, + posting_date=today(), + parent_cost_center=self.cost_center, + cost_center=self.cost_center, + rate=100, + price_list_rate=100, + do_not_submit=1, + ) + si.currency = "USD" + si.conversion_rate = 80 + si.save().submit() + + err = frappe.new_doc("Exchange Rate Revaluation") + err.company = self.company + err.posting_date = today() + err.fetch_and_calculate_accounts_data() + self.assertEqual(len(err.accounts), 1) + err.save().submit() + + gain_loss_account = err.get_for_unrealized_gain_loss_account() + usd_account = err.accounts[0].account + old_balance = err.accounts[0].balance_in_base_currency + new_balance = err.accounts[0].new_balance_in_base_currency + total_gain_loss = err.total_gain_loss + + # Create JV for ERR + ret = err.check_journal_and_reversal() + self.assertFalse(ret.get("journals_posted")) + err_journals = err.make_jv_entries() + je = frappe.get_doc("Journal Entry", err_journals.get("revaluation_jv")) + je = je.submit() + + je.reload() + self.assertEqual(je.voucher_type, "Exchange Rate Revaluation") + self.assertEqual(len(je.accounts), 3) + # A gain is credited to the gain/loss account, a loss is debited. The current + # exchange rate (from master data) may sit either side of the booked rate, so + # derive the column from the sign instead of assuming a gain. + gain_loss_debit = abs(total_gain_loss) if total_gain_loss < 0 else 0.0 + gain_loss_credit = total_gain_loss if total_gain_loss > 0 else 0.0 + expected = [ + (usd_account, new_balance, 0.0, 100.0, 0.0), + (usd_account, 0.0, old_balance, 0.0, 100.0), + (gain_loss_account, gain_loss_debit, gain_loss_credit, gain_loss_debit, gain_loss_credit), + ] + actual = [] + for acc in je.accounts: + actual.append( + ( + acc.account, + acc.debit, + acc.credit, + acc.debit_in_account_currency, + acc.credit_in_account_currency, + ) + ) + self.assertEqual(expected, actual) + + # Assert reversals are not posted + ret = err.check_journal_and_reversal() + self.assertTrue(ret.get("journals_posted")) + self.assertFalse(ret.get("reversals_posted")) + + err.make_reverse_journal() + ret = err.check_journal_and_reversal() + self.assertTrue(ret.get("journals_posted")) + self.assertTrue(ret.get("reversals_posted")) + + reverse_jv = frappe.db.get_all( + "Journal Entry", filters={"reversal_of": err_journals.get("revaluation_jv")}, pluck="name" + ) + self.assertIsNotNone(reverse_jv) + class TestExchangeRateRevaluationValidation(ERPNextTestSuite): """Validation and gain/loss calculation paths, exercised on the document directly diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry_list.js b/erpnext/accounts/doctype/journal_entry/journal_entry_list.js index 6ea0df946f2..1738beb3630 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry_list.js +++ b/erpnext/accounts/doctype/journal_entry/journal_entry_list.js @@ -1,7 +1,10 @@ frappe.listview_settings["Journal Entry"] = { - add_fields: ["voucher_type", "posting_date", "total_debit", "company", "remark"], + add_fields: ["voucher_type", "posting_date", "total_debit", "company", "remark", "reversal_of"], get_indicator: function (doc) { if (doc.docstatus === 1) { + if (doc.reversal_of && doc.voucher_type == "Exchange Rate Revaluation") { + return [__("Reversal Of Exchange Rate Revaluation"), "blue"]; + } return [__(doc.voucher_type), "blue", `voucher_type,=,${doc.voucher_type}`]; } }, diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js index 872e939344c..1a7bc328155 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js @@ -24,15 +24,22 @@ frappe.ui.form.on("Opening Invoice Creation Tool", { setTimeout( () => { frm.doc.import_in_progress = false; - frm.clear_table("invoices"); - frm.refresh_fields(); frm.page.clear_indicator(); frm.dashboard.hide_progress(); - if (frm.doc.invoice_type == "Sales") { - frappe.msgprint(__("Opening Sales Invoices have been created.")); + if (!data.errors) { + frm.clear_table("invoices"); + frm.refresh_fields(); + const message = + frm.doc.invoice_type == "Sales" + ? __("Opening Sales Invoice(s) have been created.") + : __("Opening Purchase Invoice(s) have been created."); + frappe.show_alert({ + message: message, + indicator: "green", + }); } else { - frappe.msgprint(__("Opening Purchase Invoices have been created.")); + frm.refresh_fields(); } }, 1500, diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py index a95bc2d4aea..28603721c0c 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py @@ -281,6 +281,7 @@ class OpeningInvoiceCreationTool(Document): def start_import(invoices): errors = 0 names = [] + total = len(invoices) for idx, d in enumerate(invoices): # Scope each invoice to a savepoint so a failure only undoes that invoice. # A plain rollback() would discard the whole transaction — including invoices @@ -289,11 +290,11 @@ def start_import(invoices): # postgres they would be lost). Rolling back to a savepoint keeps both. savepoint = f"opening_invoice_{frappe.generate_hash(length=8)}" frappe.db.savepoint(savepoint) + is_last = idx == total - 1 try: invoice_number = None if d.invoice_number: invoice_number = d.invoice_number - publish(idx, len(invoices), d.doctype) doc = frappe.get_doc(d) doc.flags.ignore_mandatory = True doc.insert(set_name=invoice_number) @@ -301,10 +302,12 @@ def start_import(invoices): if not frappe.in_test: frappe.db.commit() names.append(doc.name) + publish(idx, total, d.doctype, errors=errors if is_last else None) except Exception: errors += 1 frappe.db.rollback(save_point=savepoint) doc.log_error("Opening invoice creation failed") + publish(idx, total, d.doctype, errors=errors if is_last else None) if errors: frappe.msgprint( _("You had {0} errors while creating opening invoices. Check {1} for more details").format( @@ -316,7 +319,7 @@ def start_import(invoices): return names -def publish(index, total, doctype): +def publish(index, total, doctype, errors=None): frappe.publish_realtime( "opening_invoice_creation_progress", dict( @@ -324,6 +327,7 @@ def publish(index, total, doctype): message=_("Creating {} out of {} {}").format(index + 1, total, doctype), count=index + 1, total=total, + errors=errors, ), user=frappe.session.user, ) diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json b/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json index 6448d725de9..7389d0687b6 100644 --- a/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +++ b/erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json @@ -82,6 +82,7 @@ "fieldtype": "Currency", "in_list_view": 1, "label": "Outstanding Amount", + "options": "Company:company:default_currency", "reqd": 1 }, { @@ -136,7 +137,7 @@ ], "istable": 1, "links": [], - "modified": "2026-04-29 17:08:15.617047", + "modified": "2026-07-02 15:17:11.938499", "modified_by": "Administrator", "module": "Accounts", "name": "Opening Invoice Creation Tool Item", diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.py b/erpnext/accounts/doctype/payment_entry/payment_entry.py index f8ec9ecb805..8a387900cc3 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.py +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.py @@ -2530,9 +2530,7 @@ def get_reference_details( exchange_rate = get_exchange_rate(party_account_currency, company_currency, ref_doc.posting_date) else: exchange_rate = 1 - outstanding_amount, total_amount = get_outstanding_on_journal_entry( - reference_name, party_type, party - ) + outstanding_amount, total_amount = get_outstanding_on_journal_entry(reference_name, party_type, party) elif reference_doctype == "Payment Entry": if reverse_payment_details := frappe.db.get_all( diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py index 65502a54a91..d3ce2a0a2f7 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py @@ -75,7 +75,10 @@ class PaymentReconciliation(Document): self.accounting_dimension_filter_conditions = [] self.ple_posting_date_filter = [] self.dimensions = get_dimensions(with_cost_center_and_project=True)[0] - self.user_permissions = get_user_permissions(frappe.session.user) + + @property + def user_permissions(self): + return get_user_permissions(frappe.session.user) def load_from_db(self): # 'modified' attribute is required for `run_doc_method` to work properly. diff --git a/erpnext/accounts/doctype/payment_reference/payment_reference.json b/erpnext/accounts/doctype/payment_reference/payment_reference.json index a1adb181d35..4e1e0ac22e3 100644 --- a/erpnext/accounts/doctype/payment_reference/payment_reference.json +++ b/erpnext/accounts/doctype/payment_reference/payment_reference.json @@ -14,7 +14,8 @@ "section_break_mjlv", "due_date", "column_break_qghl", - "amount" + "amount", + "currency" ], "fields": [ { @@ -55,8 +56,18 @@ "fieldtype": "Currency", "in_list_view": 1, "label": "Amount", + "options": "currency", "precision": "2" }, + { + "fieldname": "currency", + "fieldtype": "Link", + "hidden": 1, + "label": "Currency", + "options": "Currency", + "print_hide": 1, + "read_only": 1 + }, { "fieldname": "column_break_lnjp", "fieldtype": "Column Break" @@ -74,7 +85,7 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2026-01-19 02:21:36.455830", + "modified": "2026-07-11 00:00:00.000000", "modified_by": "Administrator", "module": "Accounts", "name": "Payment Reference", diff --git a/erpnext/accounts/doctype/payment_request/payment_request.py b/erpnext/accounts/doctype/payment_request/payment_request.py index 5b6a56e69c3..97829eb6dc3 100644 --- a/erpnext/accounts/doctype/payment_request/payment_request.py +++ b/erpnext/accounts/doctype/payment_request/payment_request.py @@ -542,6 +542,7 @@ class PaymentRequest(Document): bank_amount=bank_amount, created_from_payment_request=True, ) + payment_entry.set_missing_ref_details(force=True) payment_entry.update( { @@ -942,6 +943,7 @@ def set_payment_references(payment_schedules): "description": row.get("description"), "due_date": row.get("due_date"), "amount": row.get("payment_amount"), + "currency": row.get("currency"), } ) diff --git a/erpnext/accounts/doctype/payment_request/test_payment_request.py b/erpnext/accounts/doctype/payment_request/test_payment_request.py index f09b9b6a626..440933360d1 100644 --- a/erpnext/accounts/doctype/payment_request/test_payment_request.py +++ b/erpnext/accounts/doctype/payment_request/test_payment_request.py @@ -774,6 +774,22 @@ class TestPaymentRequest(ERPNextTestSuite): pi.load_from_db() self.assertEqual(pr_2.grand_total, pi.outstanding_amount) + def test_payment_entry_reference_details_fetched_from_invoice(self): + pi = make_purchase_invoice(currency="INR", qty=1, rate=94500) + pi.submit() + + pr = make_payment_request(dt="Purchase Invoice", dn=pi.name, mute_email=1, submit_doc=0, return_doc=1) + pr.grand_total = 94000 + pr.submit() + + pe = pr.create_payment_entry(submit=False) + + self.assertEqual(pe.references[0].reference_name, pi.name) + self.assertEqual(pe.references[0].total_amount, pi.grand_total) + self.assertEqual(pe.references[0].outstanding_amount, pi.outstanding_amount) + self.assertEqual(pe.references[0].allocated_amount, 94000) + self.assertEqual(pe.paid_amount, 94000) + def test_consider_journal_entry_and_return_invoice(self): from erpnext.accounts.doctype.journal_entry.test_journal_entry import make_journal_entry diff --git a/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json b/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json index afab0d66c96..0169b282b9b 100644 --- a/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +++ b/erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json @@ -89,6 +89,8 @@ "item_tax_rate", "actual_batch_qty", "actual_qty", + "serial_batch_entries_section", + "serial_batch_entries_html", "section_break_tlhi", "serial_no", "column_break_ciit", @@ -859,6 +861,15 @@ "fieldtype": "Check", "label": "Use Serial No / Batch Fields" }, + { + "fieldname": "serial_batch_entries_section", + "fieldtype": "Section Break", + "label": "Serial / Batch Entries" + }, + { + "fieldname": "serial_batch_entries_html", + "fieldtype": "HTML" + }, { "depends_on": "eval:doc.use_serial_batch_fields === 1", "fieldname": "section_break_tlhi", @@ -877,7 +888,7 @@ ], "istable": 1, "links": [], - "modified": "2026-06-08 20:00:00.000000", + "modified": "2026-07-18 10:00:00.000000", "modified_by": "Administrator", "module": "Accounts", "name": "POS Invoice Item", diff --git a/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py b/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py index 18afcf445ce..dff423b36b4 100644 --- a/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py +++ b/erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py @@ -100,9 +100,9 @@ class ProcessStatementOfAccounts(Document): if not self.pdf_name: self.pdf_name = "{{ customer.customer_name }}" - validate_template(self.subject) - validate_template(self.body) - validate_template(self.pdf_name) + validate_template(self.subject, restrict_globals=True) + validate_template(self.body, restrict_globals=True) + validate_template(self.pdf_name, restrict_globals=True) if not self.customers: frappe.throw(_("Customers not selected.")) @@ -421,7 +421,6 @@ def get_context(customer, doc): return { "doc": template_doc, "customer": frappe.get_doc("Customer", customer), - "frappe": frappe.utils, } @@ -532,15 +531,15 @@ def send_emails(document_name: str, from_scheduler: bool = False, posting_date: if report: for customer, report_pdf in report.items(): context = get_context(customer, doc) - filename = frappe.render_template(doc.pdf_name, context) + filename = frappe.render_template(doc.pdf_name, context, restrict_globals=True) attachments = [{"fname": filename + ".pdf", "fcontent": report_pdf}] recipients, cc = get_recipients_and_cc(customer, doc) if not recipients: continue - subject = frappe.render_template(doc.subject, context) - message = frappe.render_template(doc.body, context) + subject = frappe.render_template(doc.subject, context, restrict_globals=True) + message = frappe.render_template(doc.body, context, restrict_globals=True) if doc.sender: sender_email = frappe.db.get_value("Email Account", doc.sender, "email_id") diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json index fc693b57d84..f4766ef7413 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json @@ -1396,8 +1396,10 @@ "fetch_from": "supplier.represents_company", "fieldname": "represents_company", "fieldtype": "Link", + "ignore_user_permissions": 1, "label": "Represents Company", - "options": "Company" + "options": "Company", + "read_only": 1 }, { "depends_on": "eval:doc.update_stock && doc.is_internal_supplier", @@ -1692,7 +1694,7 @@ "idx": 204, "is_submittable": 1, "links": [], - "modified": "2026-06-13 18:36:46.704623", + "modified": "2026-07-12 23:54:21.263951", "modified_by": "Administrator", "module": "Accounts", "name": "Purchase Invoice", diff --git a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py index 17afc03dde1..e60d3f4614c 100644 --- a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -472,7 +472,7 @@ class TestPurchaseInvoice(ERPNextTestSuite, StockTestMixin): pr = frappe.new_doc("Purchase Receipt") pr.currency = "USD" pr.company = "_Test Company with perpetual inventory" - pr.conversion_rate = (70,) + pr.conversion_rate = 80 pr.supplier = "_Test Supplier USD" pr.append( "items", @@ -491,7 +491,7 @@ class TestPurchaseInvoice(ERPNextTestSuite, StockTestMixin): # Createing purchase invoice against Purchase Receipt pi = create_purchase_invoice(pr.name) - pi.conversion_rate = 80 + pi.conversion_rate = 70 pi.credit_to = "_Test Payable USD - TCP1" pi.insert() pi.submit() diff --git a/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json b/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json index 5269fec916c..c5de538b897 100644 --- a/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +++ b/erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -75,6 +75,10 @@ "quality_inspection", "rejected_warehouse", "rejected_serial_and_batch_bundle", + "serial_batch_entries_section", + "serial_batch_entries_html", + "rejected_serial_batch_entries_section", + "rejected_serial_batch_entries_html", "section_break_rqbe", "serial_no", "rejected_serial_no", @@ -941,6 +945,24 @@ "label": "Use Serial No / Batch Fields", "print_hide": 1 }, + { + "fieldname": "serial_batch_entries_section", + "fieldtype": "Section Break", + "label": "Serial / Batch Entries" + }, + { + "fieldname": "serial_batch_entries_html", + "fieldtype": "HTML" + }, + { + "fieldname": "rejected_serial_batch_entries_section", + "fieldtype": "Section Break", + "label": "Rejected Serial / Batch Entries" + }, + { + "fieldname": "rejected_serial_batch_entries_html", + "fieldtype": "HTML" + }, { "depends_on": "eval:!doc.is_fixed_asset && doc.use_serial_batch_fields === 1 && parent.update_stock === 1", "fieldname": "section_break_rqbe", @@ -1010,7 +1032,7 @@ "idx": 1, "istable": 1, "links": [], - "modified": "2026-06-08 21:00:00.000000", + "modified": "2026-07-18 10:00:00.000000", "modified_by": "Administrator", "module": "Accounts", "name": "Purchase Invoice Item", diff --git a/erpnext/accounts/doctype/sales_invoice/mapper.py b/erpnext/accounts/doctype/sales_invoice/mapper.py index 46ce4753a85..372f4f8dc52 100644 --- a/erpnext/accounts/doctype/sales_invoice/mapper.py +++ b/erpnext/accounts/doctype/sales_invoice/mapper.py @@ -571,8 +571,6 @@ def create_dunning( source_name: str, target_doc: str | Document | None = None, ignore_permissions: bool = False ): def postprocess_dunning(source, target): - from erpnext.accounts.doctype.dunning.dunning import get_dunning_letter_text - dunning_type = frappe.db.exists("Dunning Type", {"is_default": 1, "company": source.company}) if dunning_type: dunning_type = frappe.get_doc("Dunning Type", dunning_type) @@ -581,14 +579,8 @@ def create_dunning( target.dunning_fee = dunning_type.dunning_fee target.income_account = dunning_type.income_account target.cost_center = dunning_type.cost_center - letter_text = get_dunning_letter_text( - dunning_type=dunning_type.name, doc=target.as_dict(), language=source.language - ) - - if letter_text: - target.body_text = letter_text.get("body_text") - target.closing_text = letter_text.get("closing_text") - target.language = letter_text.get("language") + target.language = source.language + target.get_dunning_letter_text() # update outstanding from doc if source.payment_schedule and len(source.payment_schedule) == 1: diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py index b754a4d0f35..e2969ec23ce 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py @@ -465,6 +465,7 @@ class SalesInvoice(SellingController): self.update_billing_status_for_zero_amount_refdoc("Delivery Note") self.update_billing_status_for_zero_amount_refdoc("Sales Order") self.check_credit_limit() + self.check_overdue_billing_threshold() if cint(self.is_pos) != 1 and not self.is_return: self.update_against_document_in_jv() @@ -669,6 +670,11 @@ class SalesInvoice(SellingController): if validate_against_credit_limit: check_credit_limit(self.customer, self.company, bypass_credit_limit_check_at_sales_order) + def check_overdue_billing_threshold(self): + from erpnext.selling.doctype.customer.customer import check_overdue_billing_threshold + + check_overdue_billing_threshold(self.customer, self.company) + @frappe.whitelist() def set_missing_values(self, for_validate: bool = False): pos = POSService(self).set_pos_fields(for_validate) diff --git a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json index 903803aa79f..7fd1ecc1400 100644 --- a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +++ b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json @@ -94,6 +94,8 @@ "incoming_rate", "item_tax_rate", "actual_batch_qty", + "serial_batch_entries_section", + "serial_batch_entries_html", "section_break_eoec", "serial_no", "column_break_ytgd", @@ -954,6 +956,15 @@ "label": "Use Serial No / Batch Fields", "print_hide": 1 }, + { + "fieldname": "serial_batch_entries_section", + "fieldtype": "Section Break", + "label": "Serial / Batch Entries" + }, + { + "fieldname": "serial_batch_entries_html", + "fieldtype": "HTML" + }, { "depends_on": "eval:doc.use_serial_batch_fields === 1 && parent.update_stock === 1", "fieldname": "section_break_eoec", @@ -1055,7 +1066,7 @@ "idx": 1, "istable": 1, "links": [], - "modified": "2026-06-08 20:00:00.000000", + "modified": "2026-07-18 10:00:00.000000", "modified_by": "Administrator", "module": "Accounts", "name": "Sales Invoice Item", diff --git a/erpnext/accounts/doctype_settings_map/party_account_(standard)/party_account_(standard).json b/erpnext/accounts/doctype_settings_map/party_account_(standard)/party_account_(standard).json new file mode 100644 index 00000000000..625d61d03d3 --- /dev/null +++ b/erpnext/accounts/doctype_settings_map/party_account_(standard)/party_account_(standard).json @@ -0,0 +1,24 @@ +{ + "applies_to_doctype": "Party Account", + "creation": "2026-07-09 16:13:10.010246", + "docstatus": 0, + "doctype": "DocType Settings Map", + "idx": 0, + "is_active": 1, + "is_standard": 1, + "mappings": [ + { + "setting_field": "enable_common_party_accounting", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "allow_multi_currency_invoices_against_single_party_account", + "settings_doctype": "Accounts Settings" + } + ], + "modified": "2026-07-09 16:13:49.623613", + "modified_by": "Administrator", + "module": "Accounts", + "name": "Party Account (Standard)", + "owner": "Administrator" +} diff --git a/erpnext/accounts/doctype_settings_map/payment_entry_(standard)/payment_entry_(standard).json b/erpnext/accounts/doctype_settings_map/payment_entry_(standard)/payment_entry_(standard).json new file mode 100644 index 00000000000..5cd47822a3d --- /dev/null +++ b/erpnext/accounts/doctype_settings_map/payment_entry_(standard)/payment_entry_(standard).json @@ -0,0 +1,32 @@ +{ + "applies_to_doctype": "Payment Entry", + "creation": "2026-07-09 15:13:39.598717", + "docstatus": 0, + "doctype": "DocType Settings Map", + "idx": 0, + "is_active": 1, + "is_standard": 1, + "mappings": [ + { + "setting_field": "unlink_payment_on_cancellation_of_invoice", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "book_tax_discount_loss", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "over_billing_allowance", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "merge_similar_account_heads", + "settings_doctype": "Accounts Settings" + } + ], + "modified": "2026-07-10 11:26:57.841200", + "modified_by": "Administrator", + "module": "Accounts", + "name": "Payment Entry (Standard)", + "owner": "Administrator" +} diff --git a/erpnext/accounts/doctype_settings_map/purchase_invoice_(standard)/purchase_invoice_(standard).json b/erpnext/accounts/doctype_settings_map/purchase_invoice_(standard)/purchase_invoice_(standard).json new file mode 100644 index 00000000000..e21c7876f73 --- /dev/null +++ b/erpnext/accounts/doctype_settings_map/purchase_invoice_(standard)/purchase_invoice_(standard).json @@ -0,0 +1,76 @@ +{ + "applies_to_doctype": "Purchase Invoice", + "creation": "2026-07-03 14:20:03.649461", + "docstatus": 0, + "doctype": "DocType Settings Map", + "idx": 0, + "is_active": 1, + "is_standard": 1, + "mappings": [ + { + "setting_field": "allow_to_make_quality_inspection_after_purchase_or_delivery", + "settings_doctype": "Stock Settings" + }, + { + "setting_field": "pr_required", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "po_required", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "project_update_frequency", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "set_landed_cost_based_on_purchase_invoice_rate", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "use_transaction_date_exchange_rate", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "maintain_same_rate", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "maintain_same_rate_action", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "role_to_override_stop_action", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "bill_for_rejected_quantity_in_purchase_invoice", + "settings_doctype": "Buying Settings" + }, + { + "setting_field": "unlink_payment_on_cancellation_of_invoice", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "check_supplier_invoice_uniqueness", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "automatically_fetch_payment_terms", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "over_billing_allowance", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "role_allowed_to_over_bill", + "settings_doctype": "Accounts Settings" + } + ], + "modified": "2026-07-20 15:56:46.025286", + "modified_by": "Administrator", + "module": "Accounts", + "name": "Purchase Invoice (Standard)", + "owner": "Administrator" +} diff --git a/erpnext/accounts/doctype_settings_map/sales_invoice_(standard)/sales_invoice_(standard).json b/erpnext/accounts/doctype_settings_map/sales_invoice_(standard)/sales_invoice_(standard).json new file mode 100644 index 00000000000..800d9869411 --- /dev/null +++ b/erpnext/accounts/doctype_settings_map/sales_invoice_(standard)/sales_invoice_(standard).json @@ -0,0 +1,68 @@ +{ + "applies_to_doctype": "Sales Invoice", + "creation": "2026-06-30 15:53:13.817029", + "docstatus": 0, + "doctype": "DocType Settings Map", + "idx": 0, + "is_active": 1, + "is_standard": 1, + "mappings": [ + { + "setting_field": "maintain_same_sales_rate", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "maintain_same_rate_action", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "role_to_override_stop_action", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "allow_negative_rates_for_items", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "sales_update_frequency", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "dn_required", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "so_required", + "settings_doctype": "Selling Settings" + }, + { + "setting_field": "allow_to_make_quality_inspection_after_purchase_or_delivery", + "settings_doctype": "Stock Settings" + }, + { + "setting_field": "unlink_payment_on_cancellation_of_invoice", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "automatically_fetch_payment_terms", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "role_allowed_to_over_bill", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "over_billing_allowance", + "settings_doctype": "Accounts Settings" + }, + { + "setting_field": "fetch_timesheet_in_sales_invoice", + "settings_doctype": "Projects Settings" + } + ], + "modified": "2026-07-20 15:32:43.080034", + "modified_by": "Administrator", + "module": "Accounts", + "name": "Sales Invoice (Standard)", + "owner": "Administrator" +} diff --git a/erpnext/accounts/doctype_settings_map/subscription_(standard)/subscription_(standard).json b/erpnext/accounts/doctype_settings_map/subscription_(standard)/subscription_(standard).json new file mode 100644 index 00000000000..0e141f25080 --- /dev/null +++ b/erpnext/accounts/doctype_settings_map/subscription_(standard)/subscription_(standard).json @@ -0,0 +1,24 @@ +{ + "applies_to_doctype": "Subscription", + "creation": "2026-07-09 15:08:44.722645", + "docstatus": 0, + "doctype": "DocType Settings Map", + "idx": 0, + "is_active": 1, + "is_standard": 1, + "mappings": [ + { + "setting_field": "grace_period", + "settings_doctype": "Subscription Settings" + }, + { + "setting_field": "cancel_after_grace", + "settings_doctype": "Subscription Settings" + } + ], + "modified": "2026-07-09 15:08:57.487184", + "modified_by": "Administrator", + "module": "Accounts", + "name": "Subscription (Standard)", + "owner": "Administrator" +} diff --git a/erpnext/accounts/letter_head/company_letterhead/company_letterhead.json b/erpnext/accounts/letter_head/company_letterhead/company_letterhead.json index 28b60e313c4..fbb83c7151f 100644 --- a/erpnext/accounts/letter_head/company_letterhead/company_letterhead.json +++ b/erpnext/accounts/letter_head/company_letterhead/company_letterhead.json @@ -1,6 +1,6 @@ { "align": "Left", - "content": "
| \n\t\t\t\t \n\t\t\t\t\t{% set company_logo = frappe.db.get_value(\"Company\", doc.company, \"company_logo\") %} {% if\n\t\t\t\t\tcompany_logo %}\n\t\t\t\t\t \n\t\t\t | \n\n\t\t\t\n\t\t\t\t{% if doc.company %} {{ doc.company }} {% endif %}\n\t\t\t\t{% if doc.company_address %} {% set company_address = frappe.db.get_value(\"Address\",\n\t\t\t\tdoc.company_address, [\"address_line1\", \"address_line2\", \"city\", \"state\", \"pincode\",\n\t\t\t\t\"country\"], as_dict=True) %} {% elif doc.billing_address %} {% set company_address =\n\t\t\t\tfrappe.db.get_value(\"Address\", doc.billing_address, [\"address_line1\", \"address_line2\", \"city\",\n\t\t\t\t\"state\", \"pincode\", \"country\"], as_dict=True) %} {% endif %} {% if company_address %} {{\n\t\t\t\tcompany_address.address_line1 or \"\" }}\n\t\t\t\t{% if company_address.address_line2 %} {{ company_address.address_line2 }} \n\t\t\t\t{% endif %} {{ company_address.city or \"\" }}, {{ company_address.state or \"\" }} {{\n\t\t\t\tcompany_address.pincode or \"\" }}, {{ company_address.country or \"\"}} \n\t\t\t\t{% endif %}\n\t\t\t | \n\n\t\t\t\n\t\t\t\t{% set website = frappe.db.get_value(\"Company\", doc.company, \"website\") %} {% set email =\n\t\t\t\tfrappe.db.get_value(\"Company\", doc.company, \"email\") %} {% set phone_no =\n\t\t\t\tfrappe.db.get_value(\"Company\", doc.company, \"phone_no\") %}\n\n\t\t\t\t \n\t\t\t\t\t{{ doc.doctype }}\n\t\t\t\t\t{{ doc.name }}\n\t\t\t\t \n\t\t\t\t{% if website %}\n\t\t\t\t\n\t\t\t\t\t{{ _(\"Website:\") }}\n\t\t\t\t\t{{ website }}\n\t\t\t\t \n\t\t\t\t{% endif %} {% if email %}\n\t\t\t\t\n\t\t\t\t\t{{ _(\"Email:\") }}\n\t\t\t\t\t{{ email }}\n\t\t\t\t \n\t\t\t\t{% endif %} {% if phone_no %}\n\t\t\t\t\n\t\t\t\t\t{{ _(\"Contact:\") }}\n\t\t\t\t\t{{ phone_no }}\n\t\t\t\t \n\t\t\t\t{% endif %}\n\t\t\t | \n\t\t
| \n\t\t\t\t \n\t\t\t\t\t{% set company_logo = frappe.db.get_value(\"Company\", doc.company, \"company_logo\") if doc.get(\"company\") else None %} {% if\n\t\t\t\t\tcompany_logo %}\n\t\t\t\t\t \n\t\t\t | \n\n\t\t\t\n\t\t\t\t{% if doc.company %} {{ doc.company }} {% endif %}\n\t\t\t\t{% if doc.company_address %} {% set company_address = frappe.db.get_value(\"Address\",\n\t\t\t\tdoc.company_address, [\"address_line1\", \"address_line2\", \"city\", \"state\", \"pincode\",\n\t\t\t\t\"country\"], as_dict=True) %} {% elif doc.billing_address %} {% set company_address =\n\t\t\t\tfrappe.db.get_value(\"Address\", doc.billing_address, [\"address_line1\", \"address_line2\", \"city\",\n\t\t\t\t\"state\", \"pincode\", \"country\"], as_dict=True) %} {% endif %} {% if company_address %} {{\n\t\t\t\tcompany_address.address_line1 or \"\" }}\n\t\t\t\t{% if company_address.address_line2 %} {{ company_address.address_line2 }} \n\t\t\t\t{% endif %} {{ company_address.city or \"\" }}, {{ company_address.state or \"\" }} {{\n\t\t\t\tcompany_address.pincode or \"\" }}, {{ company_address.country or \"\"}} \n\t\t\t\t{% endif %}\n\t\t\t | \n\n\t\t\t\n\t\t\t\t{% set website = frappe.db.get_value(\"Company\", doc.company, \"website\") if doc.get(\"company\") else None %} {% set email =\n\t\t\t\tfrappe.db.get_value(\"Company\", doc.company, \"email\") if doc.get(\"company\") else None %} {% set phone_no =\n\t\t\t\tfrappe.db.get_value(\"Company\", doc.company, \"phone_no\") if doc.get(\"company\") else None %}\n\n\t\t\t\t \n\t\t\t\t\t{{ doc.doctype }}\n\t\t\t\t\t{{ doc.name }}\n\t\t\t\t \n\t\t\t\t{% if website %}\n\t\t\t\t\n\t\t\t\t\t{{ _(\"Website:\") }}\n\t\t\t\t\t{{ website }}\n\t\t\t\t \n\t\t\t\t{% endif %} {% if email %}\n\t\t\t\t\n\t\t\t\t\t{{ _(\"Email:\") }}\n\t\t\t\t\t{{ email }}\n\t\t\t\t \n\t\t\t\t{% endif %} {% if phone_no %}\n\t\t\t\t\n\t\t\t\t\t{{ _(\"Contact:\") }}\n\t\t\t\t\t{{ phone_no }}\n\t\t\t\t \n\t\t\t\t{% endif %}\n\t\t\t | \n\t\t
| \n\t\t\t\t{% set company_logo = frappe.db.get_value(\"Company\", doc.company, \"company_logo\") %} {% if\n\t\t\t\tcompany_logo %}\n\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t{% endif %}\n\t\t\t\t{% if doc.company %}{{ doc.company }} {% endif %}\n\t\t\t\t\n\t\t\t\t\t{% if doc.company_address %} {% set company_address = frappe.db.get_value(\"Address\",\n\t\t\t\t\tdoc.company_address, [\"address_line1\", \"address_line2\", \"city\", \"state\", \"pincode\",\n\t\t\t\t\t\"country\"], as_dict=True) %} {% elif doc.billing_address %} {% set company_address =\n\t\t\t\t\tfrappe.db.get_value(\"Address\", doc.billing_address, [\"address_line1\", \"address_line2\",\n\t\t\t\t\t\"city\", \"state\", \"pincode\", \"country\"], as_dict=True) %} {% endif %} {% if company_address\n\t\t\t\t\t%} {{ company_address.address_line1 or \"\" }} \n\t\t\t\n\t\t\t\t\t{% if company_address.address_line2 %} {{ company_address.address_line2 }} \n\t\t\t\t\t{% endif %} {{ company_address.city or \"\" }}, {{ company_address.state or \"\" }} {{\n\t\t\t\t\tcompany_address.pincode or \"\" }}, {{ company_address.country or \"\"}} \n\t\t\t\t\t{% endif %}\n\t\t\t\t | \n\n\t\t\t\n\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t{{ doc.doctype }} \n\t\t\t\t\t{{ doc.name }} \n\t\t\t\t\t\n\t\t\t\t \n\t\t\t\t\t{% if doc.company %}{% set company_details = frappe.db.get_value(\"Company\", doc.company, [\"website\", \"email\",\n\t\t\t\t\t\"phone_no\"], as_dict=True) %}{% set website = company_details.website %}{% set email =\n\t\t\t\t\tcompany_details.email %}{% set phone_no = company_details.phone_no %}{% else %}{% set website = None %}{% set email = None %}{% set phone_no = None %}{% endif %} {% if website %}\n\t\t\t\t\t \n\t\t\t\n\t\t\t\t\t\t{{ _(\"Website:\") }}{{ website }}\n\t\t\t\t\t \n\t\t\t\t\t{% endif %} {% if email %}\n\t\t\t\t\t\n\t\t\t\t\t\t{{ _(\"Email:\") }}{{ email }}\n\t\t\t\t\t \n\t\t\t\t\t{% endif %} {% if phone_no %}\n\t\t\t\t\t\n\t\t\t\t\t\t{{ _(\"Contact:\") }}{{ phone_no }}\n\t\t\t\t\t \n\t\t\t\t\t{% endif %}\n\t\t\t\t | \n\t\t
| \n\t\t\t\t{% set company_logo = frappe.db.get_value(\"Company\", doc.company, \"company_logo\") if doc.get(\"company\") else None %} {% if\n\t\t\t\tcompany_logo %}\n\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t{% endif %}\n\t\t\t\t{% if doc.company %}{{ doc.company }} {% endif %}\n\t\t\t\t\n\t\t\t\t\t{% if doc.company_address %} {% set company_address = frappe.db.get_value(\"Address\",\n\t\t\t\t\tdoc.company_address, [\"address_line1\", \"address_line2\", \"city\", \"state\", \"pincode\",\n\t\t\t\t\t\"country\"], as_dict=True) %} {% elif doc.billing_address %} {% set company_address =\n\t\t\t\t\tfrappe.db.get_value(\"Address\", doc.billing_address, [\"address_line1\", \"address_line2\",\n\t\t\t\t\t\"city\", \"state\", \"pincode\", \"country\"], as_dict=True) %} {% endif %} {% if company_address\n\t\t\t\t\t%} {{ company_address.address_line1 or \"\" }} \n\t\t\t\n\t\t\t\t\t{% if company_address.address_line2 %} {{ company_address.address_line2 }} \n\t\t\t\t\t{% endif %} {{ company_address.city or \"\" }}, {{ company_address.state or \"\" }} {{\n\t\t\t\t\tcompany_address.pincode or \"\" }}, {{ company_address.country or \"\"}} \n\t\t\t\t\t{% endif %}\n\t\t\t\t | \n\n\t\t\t\n\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t{{ doc.doctype }} \n\t\t\t\t\t{{ doc.name }} \n\t\t\t\t\t\n\t\t\t\t \n\t\t\t\t\t{% if doc.company %}{% set company_details = frappe.db.get_value(\"Company\", doc.company, [\"website\", \"email\",\n\t\t\t\t\t\"phone_no\"], as_dict=True) %}{% set website = company_details.website %}{% set email =\n\t\t\t\t\tcompany_details.email %}{% set phone_no = company_details.phone_no %}{% else %}{% set website = None %}{% set email = None %}{% set phone_no = None %}{% endif %} {% if website %}\n\t\t\t\t\t \n\t\t\t\n\t\t\t\t\t\t{{ _(\"Website:\") }}{{ website }}\n\t\t\t\t\t \n\t\t\t\t\t{% endif %} {% if email %}\n\t\t\t\t\t\n\t\t\t\t\t\t{{ _(\"Email:\") }}{{ email }}\n\t\t\t\t\t \n\t\t\t\t\t{% endif %} {% if phone_no %}\n\t\t\t\t\t\n\t\t\t\t\t\t{{ _(\"Contact:\") }}{{ phone_no }}\n\t\t\t\t\t \n\t\t\t\t\t{% endif %}\n\t\t\t\t | \n\t\t
Posting Date {0} cannot be before Purchase Order date for the following:
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?" msgstr "" @@ -864,6 +864,11 @@ msgid "\n" msgstr "" +#. Header text in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounting Overview" +msgstr "" + #. Header text in the Stock Workspace #: erpnext/stock/workspace/stock/stock.json msgid "Masters & Reports" @@ -892,11 +897,6 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#. Header text in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Inward and Outward" -msgstr "" - #. Header text in the ERPNext Settings Workspace #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json msgid "Your Shortcuts\n" @@ -917,11 +917,11 @@ msgstr "" msgid "Your Shortcuts" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1300 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 msgid "Grand Total: {0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1302 msgid "Outstanding Amount: {0}" msgstr "" @@ -966,7 +966,7 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:358 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" @@ -996,7 +996,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:603 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1037,7 +1037,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1519 +#: erpnext/stock/serial_batch_bundle.py:1525 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "حدث تعارض في سلسلة التسمية أثناء إنشاء الأرقام التسلسلية. يرجى تغيير سلسلة التسمية للعنصر {0}." @@ -1147,19 +1147,19 @@ msgstr "" msgid "Abbreviation" msgstr "اسم مختصر" -#: erpnext/setup/doctype/company/company.py:310 +#: erpnext/setup/doctype/company/company.py:312 msgid "Abbreviation already used for another company" msgstr "الاختصار يستخدم بالفعل لشركة أخرى\\nMessage Example
\n\n" "
Posting Date {0} cannot be before Purchase Order date for the following:
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?" msgstr "" @@ -864,6 +864,11 @@ msgid "\n" msgstr "" +#. Header text in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounting Overview" +msgstr "" + #. Header text in the Stock Workspace #: erpnext/stock/workspace/stock/stock.json msgid "Masters & Reports" @@ -892,11 +897,6 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#. Header text in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Inward and Outward" -msgstr "" - #. Header text in the ERPNext Settings Workspace #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json msgid "Your Shortcuts\n" @@ -917,11 +917,11 @@ msgstr "" msgid "Your Shortcuts" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1300 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 msgid "Grand Total: {0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1302 msgid "Outstanding Amount: {0}" msgstr "" @@ -966,7 +966,7 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:358 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" @@ -996,7 +996,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:603 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1037,7 +1037,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1519 +#: erpnext/stock/serial_batch_bundle.py:1525 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1147,19 +1147,19 @@ msgstr "" msgid "Abbreviation" msgstr "" -#: erpnext/setup/doctype/company/company.py:310 +#: erpnext/setup/doctype/company/company.py:312 msgid "Abbreviation already used for another company" msgstr "" -#: erpnext/setup/doctype/company/company.py:307 +#: erpnext/setup/doctype/company/company.py:309 msgid "Abbreviation is mandatory" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:112 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:114 msgid "Abbreviation: {0} must appear only once" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1291 msgid "Above" msgstr "" @@ -1181,7 +1181,7 @@ msgstr "" msgid "Accept the rule for the selected transaction" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:934 +#: erpnext/public/js/shop_floor/shop_floor.js:970 msgid "Acceptable range: {0} to {1}" msgstr "" @@ -1273,11 +1273,9 @@ msgstr "" #. Label of the account_category (Link) field in DocType 'Account' #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/account_tree.js:162 #: erpnext/accounts/doctype/account_category/account_category.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Account Category" msgstr "" @@ -1343,10 +1341,10 @@ msgstr "" msgid "Account Data" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 -#: erpnext/accounts/report/cash_flow/cash_flow.js:29 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:27 +#: erpnext/accounts/report/cash_flow/cash_flow.js:36 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:27 msgid "Account Detail Level" msgstr "" @@ -1380,8 +1378,8 @@ msgstr "" msgid "Account Manager" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 -#: erpnext/controllers/accounts_controller.py:1307 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:760 +#: erpnext/controllers/accounts_controller.py:1234 msgid "Account Missing" msgstr "" @@ -1394,7 +1392,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:399 -#: erpnext/accounts/report/financial_statements.py:705 +#: erpnext/accounts/report/financial_statements.py:891 #: erpnext/accounts/report/trial_balance/trial_balance.py:498 msgid "Account Name" msgstr "" @@ -1407,7 +1405,7 @@ msgstr "" #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/account_tree.js:128 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:406 -#: erpnext/accounts/report/financial_statements.py:712 +#: erpnext/accounts/report/financial_statements.py:898 #: erpnext/accounts/report/trial_balance/trial_balance.py:505 msgid "Account Number" msgstr "" @@ -1520,6 +1518,12 @@ msgstr "" msgid "Account to record additional purchase expenses like freight or customs" msgstr "" +#. Description of the 'Expenses Added To Stock Account' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account to track value added to stock via Stock Entry, Stock Reconciliation or Landed Cost Voucher" +msgstr "" + #. Description of the 'COGS Account' (Link) field in DocType 'Item Default' #: erpnext/stock/doctype/item_default/item_default.json msgid "Account where cost of goods sold will be posted when this item is sold" @@ -1572,7 +1576,7 @@ msgstr "" msgid "Account {0} does not belong to company {1}" msgstr "" -#: erpnext/setup/doctype/company/company.py:358 +#: erpnext/setup/doctype/company/company.py:360 msgid "Account {0} does not belong to company: {1}" msgstr "" @@ -1600,7 +1604,7 @@ msgstr "" msgid "Account {0} is added in the child company {1}" msgstr "" -#: erpnext/setup/doctype/company/company.py:347 +#: erpnext/setup/doctype/company/company.py:349 msgid "Account {0} is disabled." msgstr "" @@ -1640,7 +1644,7 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" @@ -1658,6 +1662,7 @@ msgstr "" #. Item' #. Label of the section_break_10 (Section Break) field in DocType 'Shipping #. Rule' +#. Name of a Workspace #. Label of the accounting_tab (Tab Break) field in DocType 'Supplier' #. Label of a Desktop Icon #. Label of the accounting_tab (Tab Break) field in DocType 'Customer' @@ -1669,6 +1674,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/desktop_icon/accounting.json erpnext/public/js/setup_wizard.js:91 #: erpnext/selling/doctype/customer/customer.json @@ -1727,15 +1733,12 @@ msgstr "" #. Label of a Link in the Invoicing Workspace #. Label of the accounting_dimensions_section (Section Break) field in DocType #. 'Asset Repair' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json #: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json #: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json #: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:32 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/workspace_sidebar/accounts_setup.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Accounting Dimension" msgstr "" @@ -1929,8 +1932,8 @@ msgstr "" msgid "Accounting Entry for Asset" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:298 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:316 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:303 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:321 msgid "Accounting Entry for LCV in Stock Entry {0}" msgstr "" @@ -1951,17 +1954,17 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:430 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:675 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:696 -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:430 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:234 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:249 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:263 -#: erpnext/stock/services/base_stock_gl_composer.py:65 -#: erpnext/stock/services/base_stock_gl_composer.py:80 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:439 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:239 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:254 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:268 +#: erpnext/stock/services/base_stock_gl_composer.py:72 +#: erpnext/stock/services/base_stock_gl_composer.py:87 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:67 msgid "Accounting Entry for Stock" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:268 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:276 msgid "Accounting Entry for {0}" msgstr "" @@ -1970,12 +1973,12 @@ msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}" msgstr "" #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193 -#: erpnext/assets/doctype/asset/asset.js:190 -#: erpnext/assets/doctype/asset_repair/asset_repair.js:92 -#: erpnext/buying/doctype/supplier/supplier.js:123 +#: erpnext/assets/doctype/asset/asset.js:198 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:101 +#: erpnext/buying/doctype/supplier/supplier.js:132 #: erpnext/public/js/controllers/stock_controller.js:88 #: erpnext/public/js/utils/ledger_preview.js:8 -#: erpnext/selling/doctype/customer/customer.js:173 +#: erpnext/selling/doctype/customer/customer.js:182 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51 msgid "Accounting Ledger" msgstr "" @@ -1992,10 +1995,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounting_period/accounting_period.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounting Period" msgstr "" @@ -2035,7 +2036,7 @@ msgstr "" #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:513 +#: erpnext/setup/doctype/company/company.py:515 #: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/setup/doctype/incoterm/incoterm.json @@ -2075,13 +2076,18 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/report/accounts_payable/accounts_payable.json #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126 -#: erpnext/buying/doctype/supplier/supplier.js:135 +#: erpnext/buying/doctype/supplier/supplier.js:144 #: erpnext/workspace_sidebar/financial_reports.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Accounts Payable" msgstr "" +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounts Payable Ageing" +msgstr "" + #. Name of a report #: erpnext/accounts/report/accounts_payable/accounts_payable.js:191 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json @@ -2100,7 +2106,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.json #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:149 -#: erpnext/selling/doctype/customer/customer.js:162 +#: erpnext/selling/doctype/customer/customer.js:171 #: erpnext/workspace_sidebar/financial_reports.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json @@ -2119,6 +2125,11 @@ msgstr "" msgid "Accounts Receivable / Payable remarks length" msgstr "" +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounts Receivable Ageing" +msgstr "" + #. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice #. Discounting' #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json @@ -2150,17 +2161,12 @@ msgstr "" #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Accounts Settings" msgstr "" -#. Name of a Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/accounts_setup/accounts_setup.json #: erpnext/desktop_icon/accounts_setup.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounts Setup" msgstr "" @@ -2198,7 +2204,7 @@ msgstr "" #. Label of the accumulated_depreciation_amount (Currency) field in DocType #. 'Depreciation Schedule' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:173 -#: erpnext/assets/doctype/asset/asset.js:385 +#: erpnext/assets/doctype/asset/asset.js:393 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Accumulated Depreciation Amount" msgstr "" @@ -2220,9 +2226,9 @@ msgstr "" msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:46 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:12 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:47 msgid "Accumulated Values" msgstr "" @@ -2346,7 +2352,7 @@ msgstr "" #. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType #. 'Stock Settings' -#: erpnext/stock/doctype/item/item.js:481 +#: erpnext/stock/doctype/item/item.js:496 #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Activate Serial / Batch No for Item" msgstr "" @@ -2360,11 +2366,6 @@ msgstr "" msgid "Active Status" msgstr "" -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Active Subcontracted Items" -msgstr "" - #. Label of the activities_tab (Tab Break) field in DocType 'Lead' #. Label of the activities_tab (Tab Break) field in DocType 'Opportunity' #. Label of the activities_tab (Tab Break) field in DocType 'Prospect' @@ -2470,7 +2471,7 @@ msgstr "" msgid "Actual End Date (via Timesheet)" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:322 +#: erpnext/manufacturing/doctype/work_order/work_order.py:328 msgid "Actual End Date cannot be before Actual Start Date" msgstr "" @@ -2480,7 +2481,7 @@ msgstr "" msgid "Actual End Time" msgstr "" -#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:464 msgid "Actual Expense" msgstr "" @@ -2541,7 +2542,7 @@ msgstr "" msgid "Actual Qty {0} / Waiting Qty {1}" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:196 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:222 msgid "Actual Qty: Quantity available in the warehouse." msgstr "" @@ -2670,7 +2671,7 @@ msgstr "" msgid "Add Multiple Tasks" msgstr "" -#: erpnext/stock/doctype/item/item.js:981 +#: erpnext/stock/doctype/item/item.js:1002 msgid "Add Opening Stock" msgstr "" @@ -2695,7 +2696,7 @@ msgid "Add Quote" msgstr "" #. Label of the add_raw_materials (Button) field in DocType 'BOM Operation' -#: erpnext/manufacturing/doctype/bom/bom.js:1050 +#: erpnext/manufacturing/doctype/bom/bom.js:1054 #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Add Raw Materials" msgstr "" @@ -2856,11 +2857,11 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:135 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Added Supplier Role to User {0}." msgstr "" -#: erpnext/controllers/website_list_for_contact.py:311 +#: erpnext/controllers/website_list_for_contact.py:313 msgid "Added {1} role to user {0}." msgstr "" @@ -3099,7 +3100,7 @@ msgstr "" msgid "Additional Information updated successfully." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:839 +#: erpnext/manufacturing/doctype/work_order/work_order.js:843 msgid "Additional Material Transfer" msgstr "" @@ -3122,7 +3123,7 @@ msgstr "" msgid "Additional Transferred Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:592 +#: erpnext/manufacturing/doctype/work_order/work_order.py:598 msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" @@ -3275,7 +3276,7 @@ msgstr "" msgid "Adjustment Against" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:203 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:211 msgid "Adjustment based on Purchase Invoice rate" msgstr "" @@ -3352,7 +3353,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/controllers/accounts_controller.py:279 +#: erpnext/controllers/accounts_controller.py:283 #: erpnext/setup/doctype/company/company.json msgid "Advance Payments" msgstr "" @@ -3472,7 +3473,7 @@ msgstr "" msgid "Against Blanket Order" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:838 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:844 msgid "Against Customer Order {0}" msgstr "" @@ -3616,7 +3617,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:138 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1225 msgid "Age (Days)" msgstr "" @@ -3725,7 +3726,7 @@ msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 -#: erpnext/accounts/utils.py:1652 erpnext/public/js/setup_wizard.js:278 +#: erpnext/accounts/utils.py:1647 erpnext/public/js/setup_wizard.js:278 msgid "All Accounts" msgstr "" @@ -3777,21 +3778,21 @@ msgstr "" #: erpnext/patches/v11_0/update_department_lft_rgt.py:9 #: erpnext/patches/v11_0/update_department_lft_rgt.py:11 #: erpnext/patches/v11_0/update_department_lft_rgt.py:16 -#: erpnext/setup/doctype/company/company.py:506 -#: erpnext/setup/doctype/company/company.py:509 -#: erpnext/setup/doctype/company/company.py:514 -#: erpnext/setup/doctype/company/company.py:520 -#: erpnext/setup/doctype/company/company.py:526 -#: erpnext/setup/doctype/company/company.py:532 -#: erpnext/setup/doctype/company/company.py:538 -#: erpnext/setup/doctype/company/company.py:544 -#: erpnext/setup/doctype/company/company.py:550 -#: erpnext/setup/doctype/company/company.py:556 -#: erpnext/setup/doctype/company/company.py:562 -#: erpnext/setup/doctype/company/company.py:568 -#: erpnext/setup/doctype/company/company.py:574 -#: erpnext/setup/doctype/company/company.py:580 -#: erpnext/setup/doctype/company/company.py:586 +#: erpnext/setup/doctype/company/company.py:508 +#: erpnext/setup/doctype/company/company.py:511 +#: erpnext/setup/doctype/company/company.py:516 +#: erpnext/setup/doctype/company/company.py:522 +#: erpnext/setup/doctype/company/company.py:528 +#: erpnext/setup/doctype/company/company.py:534 +#: erpnext/setup/doctype/company/company.py:540 +#: erpnext/setup/doctype/company/company.py:546 +#: erpnext/setup/doctype/company/company.py:552 +#: erpnext/setup/doctype/company/company.py:558 +#: erpnext/setup/doctype/company/company.py:564 +#: erpnext/setup/doctype/company/company.py:570 +#: erpnext/setup/doctype/company/company.py:576 +#: erpnext/setup/doctype/company/company.py:582 +#: erpnext/setup/doctype/company/company.py:588 msgid "All Departments" msgstr "" @@ -3871,7 +3872,7 @@ msgstr "" msgid "All Territories" msgstr "" -#: erpnext/setup/doctype/company/company.py:451 +#: erpnext/setup/doctype/company/company.py:453 msgid "All Warehouses" msgstr "" @@ -3914,15 +3915,15 @@ msgstr "" msgid "All items in this document already have a linked Quality Inspection." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:915 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:921 msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:926 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:932 msgid "All linked Sales Orders must be subcontracted." msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:302 +#: erpnext/stock/doctype/pick_list/mapper.py:309 msgid "All picked items have already been transferred against this Pick List" msgstr "" @@ -3936,7 +3937,7 @@ msgstr "" msgid "All the items have already been returned." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1281 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1292 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" @@ -4010,7 +4011,7 @@ msgstr "" #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:409 +#: erpnext/accounts/report/gross_profit/gross_profit.py:411 #: erpnext/public/js/utils/unreconcile.js:87 msgid "Allocated Amount" msgstr "" @@ -4031,11 +4032,11 @@ msgstr "" msgid "Allocated amount" msgstr "" -#: erpnext/accounts/utils.py:665 +#: erpnext/accounts/utils.py:666 msgid "Allocated amount cannot be greater than unadjusted amount" msgstr "" -#: erpnext/accounts/utils.py:663 +#: erpnext/accounts/utils.py:664 msgid "Allocated amount cannot be negative" msgstr "" @@ -4196,7 +4197,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:210 +#: erpnext/controllers/item_variant.py:272 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4213,7 +4214,7 @@ msgstr "" msgid "Allow Resetting Service Level Agreement" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:788 msgid "Allow Resetting Service Level Agreement from Support Settings." msgstr "" @@ -4454,6 +4455,21 @@ msgstr "" msgid "Allow transferring raw materials even after the Required Quantity is fulfilled" msgstr "" +#. Label of the allowed_companies (Table MultiSelect) field in DocType +#. 'Supplier' +#. Label of the allowed_companies (Table MultiSelect) field in DocType +#. 'Customer' +#. Label of the allowed_companies (Table MultiSelect) field in DocType 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Allowed Companies" +msgstr "" + +#: erpnext/stock/doctype/company_restriction/company_restriction.py:74 +msgid "Allowed Companies is required when Restrict to Companies is checked" +msgstr "" + #. Name of a DocType #: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json msgid "Allowed Dimension" @@ -4483,6 +4499,14 @@ msgstr "" msgid "Allowed Users" msgstr "" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:59 +msgid "Allowed Users is not required as Frappe CRM is already installed on the site." +msgstr "" + +#: erpnext/crm/doctype/crm_settings/crm_settings.js:17 +msgid "Allowed Users is required for data synchronization from remote Frappe CRM site." +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" @@ -4526,7 +4550,7 @@ msgstr "" msgid "Already Imported" msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:1111 +#: erpnext/stock/doctype/pick_list/pick_list.py:1132 msgid "Already Picked" msgstr "" @@ -4534,7 +4558,7 @@ msgstr "" msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" -#: erpnext/stock/doctype/item/item.js:38 +#: erpnext/stock/doctype/item/item.js:40 msgid "Also you can't switch back to FIFO after setting the valuation method to Moving Average for this item." msgstr "" @@ -4545,8 +4569,8 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:604 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:344 +#: erpnext/public/js/utils.js:616 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:343 msgid "Alternate Item" msgstr "" @@ -4574,7 +4598,7 @@ msgstr "" msgid "Alternative item must not be same as item code" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:383 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 msgid "Alternatively, you can download the template and fill your data in." msgstr "" @@ -4965,8 +4989,8 @@ msgstr "" msgid "Ampere-Second" msgstr "" -#: erpnext/controllers/trends.py:291 erpnext/controllers/trends.py:303 -#: erpnext/controllers/trends.py:312 +#: erpnext/controllers/trends.py:301 erpnext/controllers/trends.py:313 +#: erpnext/controllers/trends.py:322 msgid "Amt" msgstr "" @@ -4981,16 +5005,16 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:766 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:495 +#: erpnext/public/js/utils/sales_common.js:493 msgid "An error occurred during the update process" msgstr "" -#: erpnext/stock/reorder_item.py:370 +#: erpnext/stock/reorder_item.py:372 msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :" msgstr "" @@ -5047,7 +5071,7 @@ msgstr "" msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1044 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1045 msgid "Another Payment Request is already processed" msgstr "" @@ -5255,8 +5279,8 @@ msgstr "" #. Label of the apply_discount_on_rate (Check) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:190 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:199 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:208 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:217 msgid "Apply Discount on Discounted Rate" msgstr "" @@ -5354,6 +5378,12 @@ msgstr "" msgid "Apply to Document" msgstr "" +#. Description of the 'Additional Discount Amount' (Currency) field in DocType +#. 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Applying a Discount Amount? When this Sales Order is partially fulfilled through multiple Delivery Notes and Sales Invoices, the Discount Amount is allocated on a FIFO basis. The earlier transactions receive a larger share of the discount. To spread the discount proportionally across item prices, use Additional Discount Percentage instead." +msgstr "" + #. Name of a DocType #. Label of a Link in the CRM Workspace #. Label of a Workspace Sidebar Item @@ -5527,15 +5557,15 @@ msgstr "" msgid "As per Stock UOM" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:189 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:207 msgid "As the field {0} is enabled, the field {1} is mandatory." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:197 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:215 msgid "As the field {0} is enabled, the value of the field {1} should be more than 1." msgstr "" -#: erpnext/stock/doctype/item/item.py:1122 +#: erpnext/stock/doctype/item/item.py:1127 msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" @@ -5543,7 +5573,7 @@ msgstr "" msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" @@ -5685,7 +5715,7 @@ msgstr "" msgid "Asset Category Name" msgstr "" -#: erpnext/stock/doctype/item/item.py:377 +#: erpnext/stock/doctype/item/item.py:382 msgid "Asset Category is mandatory for Fixed Asset item" msgstr "" @@ -5876,6 +5906,7 @@ msgstr "" #. Label of the asset_repair (Link) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item #: erpnext/assets/doctype/asset/asset.js:113 +#: erpnext/assets/doctype/asset/asset.js:152 #: erpnext/assets/doctype/asset_repair/asset_repair.json #: erpnext/assets/workspace/assets/assets.json #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json @@ -5926,8 +5957,7 @@ msgstr "" #. Label of the asset_value (Currency) field in DocType 'Asset Capitalization #. Asset Item' -#: erpnext/assets/dashboard_fixtures.py:180 -#: erpnext/assets/doctype/asset/asset.js:517 +#: erpnext/assets/doctype/asset/asset.js:525 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:208 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:457 @@ -5950,7 +5980,6 @@ msgid "Asset Value Adjustment cannot be posted before Asset's purchase date { msgstr "" #. Label of a chart in the Assets Workspace -#: erpnext/assets/dashboard_fixtures.py:56 #: erpnext/assets/workspace/assets/assets.json msgid "Asset Value Analytics" msgstr "" @@ -5987,7 +6016,7 @@ msgstr "" msgid "Asset issued to Employee {0}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:178 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:181 msgid "Asset out of order due to Asset Repair {0}" msgstr "" @@ -6032,7 +6061,7 @@ msgstr "" msgid "Asset updated after being split into Asset {0}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:335 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:338 msgid "Asset updated due to Asset Repair {0} {1}." msgstr "" @@ -6081,7 +6110,7 @@ msgstr "" msgid "Asset {0} must be submitted" msgstr "" -#: erpnext/controllers/buying_controller.py:1039 +#: erpnext/controllers/buying_controller.py:1047 msgid "Asset {assets_link} created for {item_code}" msgstr "" @@ -6106,7 +6135,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:271 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6119,11 +6148,11 @@ msgstr "" msgid "Assets Setup" msgstr "" -#: erpnext/controllers/buying_controller.py:1057 +#: erpnext/controllers/buying_controller.py:1065 msgid "Assets not created for {item_code}. You will have to create asset manually." msgstr "" -#: erpnext/controllers/buying_controller.py:1044 +#: erpnext/controllers/buying_controller.py:1052 msgid "Assets {assets_link} created for {item_code}" msgstr "" @@ -6164,7 +6193,7 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1485 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1486 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" @@ -6197,7 +6226,7 @@ msgstr "" msgid "At least one of the Applicable Modules should be selected" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:204 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:222 msgid "At least one of the Selling or Buying must be selected" msgstr "" @@ -6225,7 +6254,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1233 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1234 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6233,15 +6262,15 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1218 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1219 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1225 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1226 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:502 +#: erpnext/stock/services/serial_batch_bundle_service.py:504 msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" @@ -6301,31 +6330,31 @@ msgstr "" msgid "Attribute Value" msgstr "" -#: erpnext/stock/doctype/item/item.py:888 +#: erpnext/stock/doctype/item/item.py:893 msgid "Attribute Value {0} is not valid for the selected attribute {1}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1034 +#: erpnext/stock/doctype/item/item.py:1039 msgid "Attribute table is mandatory" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:107 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:109 msgid "Attribute value: {0} must appear only once" msgstr "" -#: erpnext/stock/doctype/item/item.py:877 +#: erpnext/stock/doctype/item/item.py:882 msgid "Attribute {0} is disabled." msgstr "" -#: erpnext/stock/doctype/item/item.py:865 +#: erpnext/stock/doctype/item/item.py:870 msgid "Attribute {0} is not valid for the selected template." msgstr "" -#: erpnext/stock/doctype/item/item.py:1038 +#: erpnext/stock/doctype/item/item.py:1043 msgid "Attribute {0} selected multiple times in Attributes Table" msgstr "" -#: erpnext/stock/doctype/item/item.py:966 +#: erpnext/stock/doctype/item/item.py:971 msgid "Attributes" msgstr "" @@ -6422,7 +6451,7 @@ msgstr "" msgid "Auto Material Request" msgstr "" -#: erpnext/stock/reorder_item.py:321 +#: erpnext/stock/reorder_item.py:323 msgid "Auto Material Requests Generated" msgstr "" @@ -6472,7 +6501,7 @@ msgstr "" msgid "Auto Reposting of Incorrect Valuation" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:209 msgid "Auto Tax Settings Error" msgstr "" @@ -6533,7 +6562,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:490 +#: erpnext/public/js/utils/sales_common.js:488 msgid "Auto repeat document updated" msgstr "" @@ -6620,7 +6649,7 @@ msgid "Availability Of Slots" msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:391 -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Available" msgstr "" @@ -6657,7 +6686,7 @@ msgstr "" #. 'Pick List Item' #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:664 +#: erpnext/public/js/utils.js:676 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6820,11 +6849,11 @@ msgstr "" msgid "Avg. Selling Price List Rate" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:347 +#: erpnext/accounts/report/gross_profit/gross_profit.py:349 msgid "Avg. Selling Rate" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:966 +#: erpnext/public/js/templates/shop_floor_template.html:986 msgid "Awaiting Transfer" msgstr "" @@ -6878,8 +6907,8 @@ msgstr "" #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 -#: erpnext/stock/doctype/material_request/material_request.js:351 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:810 +#: erpnext/stock/doctype/material_request/material_request.js:352 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:809 #: erpnext/stock/report/bom_search/bom_search.py:38 #: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:524 @@ -7109,7 +7138,7 @@ msgstr "" msgid "BOM Update Tool Log with job status maintained" msgstr "" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:102 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:103 msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" @@ -7138,8 +7167,8 @@ msgstr "" msgid "BOM and Production" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:386 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:862 +#: erpnext/stock/doctype/material_request/material_request.js:387 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:861 msgid "BOM does not contain any stock item" msgstr "" @@ -7155,15 +7184,15 @@ msgstr "" msgid "BOM update is queued and may take a few minutes. Check {0} for progress." msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1418 +#: erpnext/manufacturing/doctype/bom/bom.py:1434 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1413 +#: erpnext/manufacturing/doctype/bom/bom.py:1429 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1416 +#: erpnext/manufacturing/doctype/bom/bom.py:1432 msgid "BOM {0} must be submitted" msgstr "" @@ -7270,7 +7299,7 @@ msgstr "" #: erpnext/stock/report/available_batch_report/available_batch_report.py:62 #: erpnext/stock/report/available_serial_no/available_serial_no.py:126 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:89 #: erpnext/stock/report/stock_balance/stock_balance.py:517 #: erpnext/stock/report/stock_ledger/stock_ledger.py:331 msgid "Balance Qty" @@ -7302,7 +7331,7 @@ msgstr "" #: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json #: erpnext/accounts/report/balance_sheet/balance_sheet.json #: erpnext/accounts/workspace/financial_reports/financial_reports.json -#: erpnext/public/js/financial_statements.js:327 +#: erpnext/public/js/financial_statements.js:352 #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Balance Sheet" @@ -7322,7 +7351,7 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:295 msgid "Balance Sheet requires {0} to be synced to DuckDB" msgstr "" @@ -7343,7 +7372,7 @@ msgid "Balance Type" msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:174 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:91 #: erpnext/stock/report/stock_balance/stock_balance.py:525 #: erpnext/stock/report/stock_ledger/stock_ledger.py:388 msgid "Balance Value" @@ -7374,7 +7403,6 @@ msgstr "" #. Label of the bank (Link) field in DocType 'Payment Request' #. Label of a Link in the Invoicing Workspace #. Option for the 'Salary Mode' (Select) field in DocType 'Employee' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/bank/bank.json #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -7388,7 +7416,6 @@ msgstr "" #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:95 #: erpnext/setup/doctype/employee/employee.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank" msgstr "" @@ -7417,7 +7444,6 @@ msgstr "" #. Label of the bank_account (Link) field in DocType 'Payment Order Reference' #. Label of the bank_account (Link) field in DocType 'Payment Request' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:141 #: banking/src/pages/BankStatementImporter.tsx:90 #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -7436,7 +7462,6 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:16 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:16 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account" msgstr "" @@ -7472,16 +7497,12 @@ msgid "Bank Account No" msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account Subtype" msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_account_type/bank_account_type.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account Type" msgstr "" @@ -7494,7 +7515,9 @@ msgstr "" msgid "Bank Accounts" msgstr "" +#. Label of a chart in the Accounting Workspace #. Label of the bank_balance (Check) field in DocType 'Email Digest' +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/setup/doctype/email_digest/email_digest.json msgid "Bank Balance" msgstr "" @@ -7518,10 +7541,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_clearance/bank_clearance.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Clearance" msgstr "" @@ -7591,9 +7612,7 @@ msgid "Bank Fee, Salary, etc." msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Guarantee" msgstr "" @@ -7621,11 +7640,6 @@ msgstr "" msgid "Bank Overdraft Account" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/banking.json -msgid "Bank Reconciliation" -msgstr "" - #. Name of a report #. Label of a Link in the Invoicing Workspace #: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:208 @@ -7771,19 +7785,15 @@ msgstr "" #. Label of the banking_section (Section Break) field in DocType 'Accounts #. Settings' -#. Name of a Workspace #. Label of a Card Break in the Invoicing Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar #: banking/src/pages/BankReconciliation.tsx:57 #: banking/src/pages/BankReconciliation.tsx:87 #: banking/src/pages/BankStatementImporterContainer.tsx:22 #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/workspace/banking/banking.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/desktop_icon/banking.json #: erpnext/setup/setup_wizard/data/industry_type.txt:8 -#: erpnext/workspace_sidebar/banking.json msgid "Banking" msgstr "" @@ -7792,11 +7802,11 @@ msgstr "" msgid "Barcode Type" msgstr "" -#: erpnext/stock/doctype/item/item.py:547 +#: erpnext/stock/doctype/item/item.py:552 msgid "Barcode {0} already used in Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:562 +#: erpnext/stock/doctype/item/item.py:567 msgid "Barcode {0} is not a valid {1} code" msgstr "" @@ -7951,7 +7961,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #: erpnext/stock/doctype/batch/batch.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158 #: erpnext/stock/report/stock_ledger/stock_ledger.py:418 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:182 @@ -8035,7 +8045,7 @@ msgstr "" #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 #: erpnext/public/js/controllers/transaction.js:2989 -#: erpnext/public/js/utils/barcode_scanner.js:281 +#: erpnext/public/js/utils/barcode_scanner.js:286 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/item_price/item_price.json @@ -8065,11 +8075,11 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1236 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1237 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3566 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3572 msgid "Batch No {0} does not exist" msgstr "" @@ -8077,11 +8087,11 @@ msgstr "" msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:490 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:491 msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:708 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:709 msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" msgstr "" @@ -8096,7 +8106,7 @@ msgstr "" msgid "Batch Nos" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2080 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2081 msgid "Batch Nos are created successfully" msgstr "" @@ -8150,7 +8160,7 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:743 +#: erpnext/manufacturing/doctype/work_order/work_order.py:749 msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" @@ -8227,7 +8237,7 @@ msgstr "" #. Label of the bill_date (Date) field in DocType 'Journal Entry' #. Label of the bill_date (Date) field in DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1208 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210 #: erpnext/accounts/report/purchase_register/purchase_register.py:232 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Bill Date" @@ -8248,7 +8258,7 @@ msgstr "" #. Label of the bill_no (Data) field in DocType 'Journal Entry' #. Label of the bill_no (Data) field in DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1207 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1209 #: erpnext/accounts/report/purchase_register/purchase_register.py:231 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Bill No" @@ -8263,18 +8273,16 @@ msgstr "" #. Label of a Card Break in the Manufacturing Workspace #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/bom/bom.py:1168 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/stock/doctype/material_request/material_request.js:139 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:796 +#: erpnext/stock/doctype/material_request/material_request.js:142 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:795 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Bill of Materials" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Timesheet' -#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/controllers/website_list_for_contact.py:212 #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/doctype/timesheet/timesheet_list.js:9 msgid "Billed" @@ -8492,7 +8500,7 @@ msgstr "" msgid "Billing Zipcode" msgstr "" -#: erpnext/accounts/party.py:619 +#: erpnext/accounts/party.py:635 msgid "Billing currency must be equal to either default company's currency or party account currency" msgstr "" @@ -8638,6 +8646,12 @@ msgstr "" msgid "Block Supplier" msgstr "" +#. Description of the 'Enable Overdue Billing Threshold' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Block submitting a new Sales Invoice when the customer's overdue amount exceeds the Overdue Billing Threshold set on the customer." +msgstr "" + #. Description of the 'Is Frozen' (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n" @@ -8658,7 +8672,7 @@ msgstr "" msgid "Blood Group" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:123 +#: erpnext/public/js/shop_floor/shop_floor.js:149 msgid "Board" msgstr "" @@ -8715,6 +8729,12 @@ msgstr "" msgid "Book Deferred entries based on" msgstr "" +#. Label of the book_stock_expense_gl_entries (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Stock Expense GL Entries" +msgstr "" + #: erpnext/www/book_appointment/index.html:15 msgid "Book an appointment" msgstr "" @@ -8742,6 +8762,12 @@ msgstr "" msgid "Booked Fixed Asset" msgstr "" +#. Description of the 'Book Stock Expense GL Entries' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Books Purchase Expense and Expenses Added To Stock account pairs against stock value. On enabling this, the accounts become mandatory in Company or Item Defaults for Purchase Receipt, Purchase Invoice, Stock Entry, Stock Reconciliation and Landed Cost Voucher" +msgstr "" + #: erpnext/accounts/services/gl_validator.py:143 msgid "Books have been closed until the period ending on {0}" msgstr "" @@ -8778,12 +8804,10 @@ msgstr "" #. Label of the branch (Data) field in DocType 'Branch' #. Label of the branch (Link) field in DocType 'Employee' #. Label of the branch (Link) field in DocType 'Employee Internal Work History' -#. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/sms_center/sms_center.json #: erpnext/setup/doctype/branch/branch.json #: erpnext/setup/doctype/employee/employee.json #: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json -#: erpnext/workspace_sidebar/organization.json msgid "Branch" msgstr "" @@ -8871,7 +8895,6 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace #. Label of a Desktop Icon -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/budget/budget.json #: erpnext/accounts/doctype/cost_center/cost_center.js:45 @@ -8882,9 +8905,9 @@ msgstr "" #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:237 #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:319 #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:329 -#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:454 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/desktop_icon/budget.json erpnext/workspace_sidebar/budgeting.json +#: erpnext/desktop_icon/budget.json msgid "Budget" msgstr "" @@ -8952,8 +8975,8 @@ msgstr "" msgid "Budget Start Date" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/budgeting.json +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json msgid "Budget Variance" msgstr "" @@ -8973,13 +8996,6 @@ msgstr "" msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" -#. Name of a Workspace -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/budgeting/budgeting.json -#: erpnext/workspace_sidebar/budgeting.json -msgid "Budgeting" -msgstr "" - #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" msgstr "" @@ -9130,7 +9146,7 @@ msgstr "" msgid "Buying & Selling Settings" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:368 +#: erpnext/accounts/report/gross_profit/gross_profit.py:370 msgid "Buying Amount" msgstr "" @@ -9170,7 +9186,7 @@ msgstr "" msgid "Buying and Selling" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:219 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:237 msgid "Buying must be checked, if Applicable For is selected as {0}" msgstr "" @@ -9209,11 +9225,6 @@ msgstr "" msgid "CC To" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "COA Importer" -msgstr "" - #. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' #: erpnext/stock/doctype/item_barcode/item_barcode.json msgid "CODE-39" @@ -9231,7 +9242,7 @@ msgstr "" msgid "COGS By Item Group" msgstr "" -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:44 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:55 msgid "COGS Debit" msgstr "" @@ -9518,7 +9529,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1176 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9547,7 +9558,7 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2615 msgid "Can only make payment against unbilled {0}" msgstr "" @@ -9557,7 +9568,7 @@ msgstr "" msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" -#: erpnext/setup/doctype/company/company.py:278 +#: erpnext/setup/doctype/company/company.py:280 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" @@ -9601,7 +9612,7 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/setup/doctype/company/company.py:297 +#: erpnext/setup/doctype/company/company.py:299 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9609,9 +9620,9 @@ msgstr "" msgid "Cannot Create Return" msgstr "" -#: erpnext/stock/doctype/item/item.py:690 -#: erpnext/stock/doctype/item/item.py:703 -#: erpnext/stock/doctype/item/item.py:719 +#: erpnext/stock/doctype/item/item.py:695 +#: erpnext/stock/doctype/item/item.py:708 +#: erpnext/stock/doctype/item/item.py:724 msgid "Cannot Merge" msgstr "" @@ -9635,7 +9646,7 @@ msgstr "" msgid "Cannot apply TDS against multiple parties in one entry" msgstr "" -#: erpnext/stock/doctype/item/item.py:380 +#: erpnext/stock/doctype/item/item.py:385 msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" @@ -9656,15 +9667,15 @@ msgstr "" msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:283 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:851 +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" -#: erpnext/stock/stock_ledger.py:226 +#: erpnext/stock/stock_ledger.py:230 msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" @@ -9676,7 +9687,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted Asset Value Adjustment {0}. Please cancel the Asset Value Adjustment to continue." msgstr "" -#: erpnext/controllers/buying_controller.py:1145 +#: erpnext/controllers/buying_controller.py:1153 msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" @@ -9684,11 +9695,11 @@ msgstr "" msgid "Cannot cancel transaction for Completed Work Order." msgstr "" -#: erpnext/stock/doctype/item/item.py:986 +#: erpnext/stock/doctype/item/item.py:991 msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1147 +#: erpnext/stock/doctype/item/item.py:1152 msgid "Cannot change Item {0} from serialized to non-serialized because a Serial and Batch Bundle exists for it. Please delete or cancel the Serial and Batch Bundle first." msgstr "" @@ -9700,11 +9711,11 @@ msgstr "" msgid "Cannot change Service Stop Date for item in row {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:977 +#: erpnext/stock/doctype/item/item.py:982 msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this." msgstr "" -#: erpnext/setup/doctype/company/company.py:403 +#: erpnext/setup/doctype/company/company.py:405 msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency." msgstr "" @@ -9716,7 +9727,7 @@ msgstr "" msgid "Cannot convert Cost Center to ledger as it has child nodes" msgstr "" -#: erpnext/projects/doctype/task/task.js:49 +#: erpnext/projects/doctype/task/task.js:55 msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}." msgstr "" @@ -9732,6 +9743,10 @@ msgstr "" msgid "Cannot create Intercompany {0}. All items in the source {1} have already been fully invoiced. Please check the existing linked {2}s." msgstr "" +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:103 +msgid "Cannot create Material Request for item {0} in group warehouse {1}." +msgstr "" + #: erpnext/stock/doctype/purchase_receipt/services/reservation.py:49 msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" @@ -9791,7 +9806,7 @@ msgstr "" msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch." msgstr "" -#: erpnext/setup/doctype/company/company.py:629 +#: erpnext/setup/doctype/company/company.py:631 msgid "Cannot disable perpetual inventory, as there are existing Stock Ledger Entries for the company {0}. Please cancel the stock transactions first and try again." msgstr "" @@ -9799,7 +9814,7 @@ msgstr "" msgid "Cannot disable {0} as it may lead to incorrect stock valuation." msgstr "" -#: erpnext/manufacturing/doctype/work_order/services/status.py:254 +#: erpnext/manufacturing/doctype/work_order/services/status.py:263 msgid "Cannot disassemble more than produced quantity." msgstr "" @@ -9807,11 +9822,11 @@ msgstr "" msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble." msgstr "" -#: erpnext/setup/doctype/company/company.py:294 +#: erpnext/setup/doctype/company/company.py:296 msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:45 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9824,11 +9839,11 @@ msgstr "" msgid "Cannot fetch selected rows for submitted Payment Request" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:62 +#: erpnext/public/js/utils/barcode_scanner.js:67 msgid "Cannot find Item or Warehouse with this Barcode" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:63 +#: erpnext/public/js/utils/barcode_scanner.js:68 msgid "Cannot find Item with this Barcode" msgstr "" @@ -9836,7 +9851,7 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1100 +#: erpnext/accounts/party.py:1116 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" @@ -9852,11 +9867,11 @@ msgstr "" msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:904 +#: erpnext/manufacturing/doctype/work_order/work_order.py:910 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:908 +#: erpnext/manufacturing/doctype/work_order/work_order.py:914 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9886,7 +9901,7 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:371 +#: erpnext/selling/doctype/customer/customer.py:385 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" @@ -9911,7 +9926,7 @@ msgstr "" msgid "Cannot set authorization on basis of Discount for {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:777 +#: erpnext/stock/doctype/item/item.py:782 msgid "Cannot set multiple Item Defaults for a company." msgstr "" @@ -9982,7 +9997,7 @@ msgstr "" msgid "Capacity Planning For (Days)" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:662 +#: erpnext/public/js/shop_floor/shop_floor.js:698 msgid "Capacity Reached" msgstr "" @@ -10020,7 +10035,7 @@ msgstr "" msgid "Capital Work in Progress" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:228 +#: erpnext/assets/doctype/asset/asset.js:236 msgid "Capitalize Asset" msgstr "" @@ -10029,7 +10044,7 @@ msgstr "" msgid "Capitalize Repair Cost" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:226 +#: erpnext/assets/doctype/asset/asset.js:234 msgid "Capitalize this asset before submitting." msgstr "" @@ -10103,19 +10118,19 @@ msgstr "" msgid "Cash Flow" msgstr "" -#: erpnext/public/js/financial_statements.js:359 +#: erpnext/public/js/financial_statements.js:384 msgid "Cash Flow Statement" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:187 +#: erpnext/accounts/report/cash_flow/cash_flow.py:203 msgid "Cash Flow from Financing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:180 +#: erpnext/accounts/report/cash_flow/cash_flow.py:196 msgid "Cash Flow from Investing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:168 +#: erpnext/accounts/report/cash_flow/cash_flow.py:184 msgid "Cash Flow from Operations" msgstr "" @@ -10214,16 +10229,12 @@ msgstr "" msgid "Category Details" msgstr "" -#: erpnext/assets/dashboard_fixtures.py:93 -msgid "Category-wise Asset Value" -msgstr "" - -#: erpnext/buying/doctype/purchase_order/purchase_order.py:289 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:290 #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:140 msgid "Caution" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:210 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:218 msgid "Caution: This might alter frozen accounts." msgstr "" @@ -10323,7 +10334,7 @@ msgstr "" msgid "Change in Stock Value" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:773 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:779 msgid "Change the account type to Receivable or select a different account." msgstr "" @@ -10333,7 +10344,7 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:161 +#: erpnext/selling/doctype/customer/customer.py:168 msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" @@ -10341,7 +10352,7 @@ msgstr "" msgid "Changes in {0}" msgstr "" -#: erpnext/stock/doctype/item/item.js:447 +#: erpnext/stock/doctype/item/item.js:462 msgid "Changing Customer Group for the selected Customer is not allowed." msgstr "" @@ -10351,7 +10362,7 @@ msgstr "" msgid "Changing the account in any transaction of the DocTypes listed below will trigger a repost. To prevent reposting, remove the relevant DocType from the list." msgstr "" -#: erpnext/stock/doctype/item/item.js:34 +#: erpnext/stock/doctype/item/item.js:36 msgid "Changing the valuation method to Moving Average will affect new transactions. If backdated entries are added, earlier FIFO-based entries will be reposted, which may change closing balances." msgstr "" @@ -10416,7 +10427,6 @@ msgstr "" #: erpnext/setup/doctype/company/company.js:139 #: erpnext/setup/doctype/company/company.json #: erpnext/setup/workspace/home/home.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/invoicing.json msgid "Chart of Accounts" msgstr "" @@ -10431,11 +10441,9 @@ msgid "Chart of Accounts Importer" msgstr "" #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account_tree.js:191 #: erpnext/accounts/doctype/cost_center/cost_center.js:41 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Chart of Cost Centers" msgstr "" @@ -10677,7 +10685,7 @@ msgstr "" msgid "Clauses and Conditions" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:493 +#: erpnext/public/js/utils/barcode_scanner.js:502 msgid "Clear Last Scanned Warehouse" msgstr "" @@ -10743,7 +10751,7 @@ msgstr "" msgid "Clearing Demo Data..." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:720 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:747 msgid "Click on 'Get Finished Goods for Manufacture' to fetch the items from the above Sales Orders. Items only for which a BOM is present will be fetched." msgstr "" @@ -10751,7 +10759,7 @@ msgstr "" msgid "Click on Add to Holidays. This will populate the holidays table with all the dates that fall on the selected weekly off. Repeat the process for populating the dates for all your weekly holidays" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:715 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:742 msgid "Click on Get Sales Orders to fetch sales orders based on the above filters." msgstr "" @@ -10803,7 +10811,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1375 +#: erpnext/public/js/shop_floor/shop_floor.js:1410 msgid "Close detail / blur search" msgstr "" @@ -10821,7 +10829,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1126 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1132 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -11256,6 +11264,7 @@ msgstr "" #. Label of the company (Link) field in DocType 'Vehicle' #. Label of a Link in the Home Workspace #. Label of the company (Link) field in DocType 'Bin' +#. Label of the company (Link) field in DocType 'Company Restriction' #. Label of the company (Link) field in DocType 'Delivery Note' #. Label of the company (Link) field in DocType 'Delivery Trip' #. Label of the company (Link) field in DocType 'Item Default' @@ -11285,7 +11294,6 @@ msgstr "" #. Label of the company (Link) field in DocType 'Subcontracting Receipt' #. Label of the company (Link) field in DocType 'Issue' #. Label of the company (Link) field in DocType 'Warranty Claim' -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:82 #: banking/src/pages/BankStatementImporter.tsx:84 #: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.js:8 @@ -11474,7 +11482,7 @@ msgstr "" #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/report/project_summary/project_summary.js:8 #: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:45 -#: erpnext/public/js/financial_statements.js:381 +#: erpnext/public/js/financial_statements.js:418 #: erpnext/public/js/purchase_trends_filters.js:8 #: erpnext/public/js/sales_trends_filters.js:51 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json @@ -11525,9 +11533,10 @@ msgstr "" #: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8 #: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8 #: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/company_restriction/company_restriction.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.js:936 +#: erpnext/stock/doctype/item/item.js:957 #: erpnext/stock/doctype/item_default/item_default.json #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json @@ -11593,8 +11602,6 @@ msgstr "" #: erpnext/support/doctype/warranty_claim/warranty_claim.json #: erpnext/support/report/issue_analytics/issue_analytics.js:8 #: erpnext/support/report/issue_summary/issue_summary.js:8 -#: erpnext/workspace_sidebar/accounts_setup.json -#: erpnext/workspace_sidebar/organization.json msgid "Company" msgstr "" @@ -11663,11 +11670,11 @@ msgstr "" msgid "Company Address Name" msgstr "" -#: erpnext/controllers/accounts_controller.py:1704 +#: erpnext/controllers/accounts_controller.py:1631 msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager." msgstr "" -#: erpnext/controllers/accounts_controller.py:1692 +#: erpnext/controllers/accounts_controller.py:1619 msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager." msgstr "" @@ -11753,6 +11760,23 @@ msgstr "" msgid "Company Not Linked" msgstr "" +#. Name of a DocType +#: erpnext/stock/doctype/company_restriction/company_restriction.json +msgid "Company Restriction" +msgstr "" + +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Supplier' +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Customer' +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Company Restrictions" +msgstr "" + #. Label of the shipping_address (Link) field in DocType 'Request for #. Quotation' #. Label of the shipping_address (Link) field in DocType 'Subcontracting Order' @@ -11766,7 +11790,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:697 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11778,8 +11802,8 @@ msgstr "" msgid "Company currencies of both the companies should match for Inter Company Transactions." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:380 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:856 +#: erpnext/stock/doctype/material_request/material_request.js:381 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:855 msgid "Company field is required" msgstr "" @@ -11890,7 +11914,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:610 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -11925,7 +11949,7 @@ msgstr "" msgid "Completed Operation" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:990 +#: erpnext/public/js/templates/shop_floor_template.html:1010 msgid "Completed Operations" msgstr "" @@ -11945,17 +11969,17 @@ msgstr "" msgid "Completed Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/services/operations.py:274 +#: erpnext/manufacturing/doctype/work_order/services/operations.py:294 msgid "Completed Qty cannot be greater than 'Qty to Manufacture'" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:258 #: erpnext/manufacturing/doctype/job_card/job_card.js:392 -#: erpnext/public/js/shop_floor/shop_floor.js:768 +#: erpnext/public/js/shop_floor/shop_floor.js:804 msgid "Completed Quantity" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:825 +#: erpnext/public/js/shop_floor/shop_floor.js:861 msgid "Completed Quantity should be greater than 0" msgstr "" @@ -11993,7 +12017,7 @@ msgstr "" msgid "Completion Date" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:82 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:85 msgid "Completion Date can not be before Failure Date. Please adjust the dates accordingly." msgstr "" @@ -12147,7 +12171,7 @@ msgstr "" msgid "Consider Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1099 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1103 msgid "Consider Process Loss" msgstr "" @@ -12659,7 +12683,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:915 +#: erpnext/public/js/utils.js:927 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12685,7 +12709,7 @@ msgstr "" msgid "Conversion Rate" msgstr "" -#: erpnext/stock/doctype/item/item.py:463 +#: erpnext/stock/doctype/item/item.py:468 msgid "Conversion factor for default Unit of Measure must be 1 in row {0}" msgstr "" @@ -12693,15 +12717,15 @@ msgstr "" msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}." msgstr "" -#: erpnext/controllers/accounts_controller.py:1385 +#: erpnext/controllers/accounts_controller.py:1312 msgid "Conversion rate cannot be 0" msgstr "" -#: erpnext/controllers/accounts_controller.py:1392 +#: erpnext/controllers/accounts_controller.py:1319 msgid "Conversion rate is 1.00, but document currency is different from company currency" msgstr "" -#: erpnext/controllers/accounts_controller.py:1388 +#: erpnext/controllers/accounts_controller.py:1315 msgid "Conversion rate must be 1.00 if document currency is same as company currency" msgstr "" @@ -12908,7 +12932,6 @@ msgstr "" #. Item' #. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt #. Supplied Item' -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:567 #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:626 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1179 @@ -12953,7 +12976,7 @@ msgstr "" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:28 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:47 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:30 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:47 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:42 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 @@ -12961,7 +12984,7 @@ msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:154 #: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 -#: erpnext/accounts/report/gross_profit/gross_profit.py:395 +#: erpnext/accounts/report/gross_profit/gross_profit.py:397 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 #: erpnext/accounts/report/purchase_register/purchase_register.js:46 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:30 @@ -12985,7 +13008,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 #: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 -#: erpnext/public/js/financial_statements.js:475 +#: erpnext/public/js/financial_statements.js:512 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/doctype/delivery_note/delivery_note.json @@ -13002,16 +13025,13 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Cost Center" msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Cost Center Allocation" msgstr "" @@ -13037,12 +13057,16 @@ msgstr "" msgid "Cost Center Number" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:122 +msgid "Cost Center Validation Error" +msgstr "" + #. Label of a Card Break in the Invoicing Workspace #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:546 +#: erpnext/public/js/utils/sales_common.js:544 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -13055,7 +13079,7 @@ msgid "Cost Center is required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:644 -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:401 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:410 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -13083,7 +13107,7 @@ msgstr "" msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" -#: erpnext/accounts/report/financial_statements.py:685 +#: erpnext/accounts/report/financial_statements.py:863 msgid "Cost Center: {0} does not exist" msgstr "" @@ -13242,7 +13266,7 @@ msgid "Could not re-extract the table." msgstr "" #: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py:123 -#: erpnext/accounts/report/financial_statements.py:241 +#: erpnext/accounts/report/financial_statements.py:420 msgid "Could not retrieve information for {0}." msgstr "" @@ -13414,7 +13438,7 @@ msgstr "" msgid "Create Inter Company Journal Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:55 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:62 msgid "Create Invoices" msgstr "" @@ -13457,8 +13481,8 @@ msgstr "" msgid "Create Ledger Entries for Change Amount" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:257 -#: erpnext/selling/doctype/customer/customer.js:289 +#: erpnext/buying/doctype/supplier/supplier.js:266 +#: erpnext/selling/doctype/customer/customer.js:298 msgid "Create Link" msgstr "" @@ -13605,9 +13629,9 @@ msgstr "" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Sales Invoice' #: erpnext/accounts/onboarding_step/create_sales_invoice/create_sales_invoice.json -#: erpnext/projects/doctype/timesheet/timesheet.js:55 -#: erpnext/projects/doctype/timesheet/timesheet.js:231 -#: erpnext/projects/doctype/timesheet/timesheet.js:235 +#: erpnext/projects/doctype/timesheet/timesheet.js:56 +#: erpnext/projects/doctype/timesheet/timesheet.js:233 +#: erpnext/projects/doctype/timesheet/timesheet.js:237 #: erpnext/selling/onboarding_step/create_sales_invoice/create_sales_invoice.json msgid "Create Sales Invoice" msgstr "" @@ -13630,7 +13654,7 @@ msgid "Create Service Item" msgstr "" #: erpnext/stock/dashboard/item_dashboard.js:283 -#: erpnext/stock/doctype/material_request/material_request.js:478 +#: erpnext/stock/doctype/material_request/material_request.js:479 msgid "Create Stock Entry" msgstr "" @@ -13713,12 +13737,12 @@ msgstr "" msgid "Create Users" msgstr "" -#: erpnext/stock/doctype/item/item.js:1394 +#: erpnext/stock/doctype/item/item.js:1415 msgid "Create Variant" msgstr "" -#: erpnext/stock/doctype/item/item.js:1206 -#: erpnext/stock/doctype/item/item.js:1243 +#: erpnext/stock/doctype/item/item.js:1227 +#: erpnext/stock/doctype/item/item.js:1264 msgid "Create Variants" msgstr "" @@ -13737,7 +13761,7 @@ msgstr "" msgid "Create Workstation" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1042 +#: erpnext/public/js/shop_floor/shop_floor.js:1078 msgid "Create a Manufacture stock entry for the finished goods?" msgstr "" @@ -13753,12 +13777,12 @@ msgstr "" msgid "Create a new rule to automatically classify transactions." msgstr "" -#: erpnext/stock/doctype/item/item.js:1226 -#: erpnext/stock/doctype/item/item.js:1387 +#: erpnext/stock/doctype/item/item.js:1247 +#: erpnext/stock/doctype/item/item.js:1408 msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2157 +#: erpnext/stock/stock_ledger.py:2205 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13796,7 +13820,7 @@ msgstr "" msgid "Created {0} draft Grouped Payment Entries" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:230 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:232 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13833,11 +13857,11 @@ msgstr "" msgid "Creating Dimensions..." msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:92 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:102 msgid "Creating Journal Entries..." msgstr "" -#: erpnext/stock/doctype/item/item.js:995 +#: erpnext/stock/doctype/item/item.js:1016 msgid "Creating Opening Stock Entry..." msgstr "" @@ -13845,7 +13869,7 @@ msgstr "" msgid "Creating Packing Slip ..." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:61 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:68 msgid "Creating Purchase Invoices ..." msgstr "" @@ -13863,7 +13887,7 @@ msgstr "" msgid "Creating Return of Components ..." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:59 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:66 msgid "Creating Sales Invoices ..." msgstr "" @@ -13891,7 +13915,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 msgid "Creating {} out of {} {}" msgstr "" @@ -13944,6 +13968,13 @@ msgstr "" msgid "Credit" msgstr "" +#. Label of the credit_limits (Table) field in DocType 'Customer' +#. Label of the credit_limits (Table) field in DocType 'Customer Group' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Credit & Overdue Limits" +msgstr "" + #: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" @@ -14013,23 +14044,19 @@ msgstr "" msgid "Credit Days" msgstr "" -#. Label of the credit_limits (Table) field in DocType 'Customer' #. Label of the credit_limit (Currency) field in DocType 'Customer Credit #. Limit' #. Label of the credit_limit (Currency) field in DocType 'Company' -#. Label of the credit_limits (Table) field in DocType 'Customer Group' #. Label of the section_credit_limit (Section Break) field in DocType 'Supplier #. Group' -#: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:65 #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/supplier_group/supplier_group.json msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:542 +#: erpnext/selling/doctype/customer/customer.py:559 msgid "Credit Limit Crossed" msgstr "" @@ -14064,7 +14091,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:176 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219 #: erpnext/controllers/sales_and_purchase_return.py:462 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:303 #: erpnext/stock/doctype/delivery_note/delivery_note.js:89 @@ -14100,7 +14127,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:380 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:388 -#: erpnext/controllers/accounts_controller.py:1287 +#: erpnext/controllers/accounts_controller.py:1214 msgid "Credit To" msgstr "" @@ -14109,20 +14136,20 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:508 -#: erpnext/selling/doctype/customer/customer.py:564 +#: erpnext/selling/doctype/customer/customer.py:525 +#: erpnext/selling/doctype/customer/customer.py:581 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:398 +#: erpnext/selling/doctype/customer/customer.py:412 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:563 +#: erpnext/selling/doctype/customer/customer.py:580 msgid "Credit limit reached for customer {0}" msgstr "" -#: erpnext/accounts/utils.py:2854 +#: erpnext/accounts/utils.py:2850 msgid "Credit limit warning — submission may be blocked: {0}" msgstr "" @@ -14182,7 +14209,7 @@ msgstr "" msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:196 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14239,10 +14266,8 @@ msgstr "" #. Label of a Link in the Invoicing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/doctype/currency_exchange/currency_exchange.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Currency Exchange" msgstr "" @@ -14252,7 +14277,6 @@ msgstr "" #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Currency Exchange Settings" msgstr "" @@ -14305,13 +14329,13 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 -msgid "Currency filters are currently unsupported in Custom Financial Report." +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:260 +msgid "Currency filters are currently unsupported in Custom Financial Report" msgstr "" #: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:215 #: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:284 -#: erpnext/accounts/utils.py:2573 +#: erpnext/accounts/utils.py:2569 msgid "Currency for {0} must be {1}" msgstr "" @@ -14323,7 +14347,7 @@ msgstr "" msgid "Currency of the price list {0} must be {1} or {2}" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:298 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 msgid "Currency should be same as Price List Currency: {0}" msgstr "" @@ -14369,7 +14393,7 @@ msgstr "" msgid "Current BOM" msgstr "" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:81 msgid "Current BOM and New BOM cannot be the same" msgstr "" @@ -14599,7 +14623,7 @@ msgstr "" #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:38 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:29 #: erpnext/accounts/report/general_ledger/general_ledger.html:136 -#: erpnext/accounts/report/gross_profit/gross_profit.py:416 +#: erpnext/accounts/report/gross_profit/gross_profit.py:418 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:38 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:22 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:221 @@ -14610,8 +14634,8 @@ msgstr "" #: erpnext/accounts/report/sales_register/sales_register.py:201 #: erpnext/assets/doctype/asset/asset.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/supplier/supplier.js:225 -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/buying/doctype/supplier/supplier.js:234 +#: erpnext/controllers/trends.py:434 erpnext/crm/doctype/contract/contract.json #: erpnext/crm/doctype/lead/lead.js:32 #: erpnext/crm/doctype/opportunity/opportunity.js:99 #: erpnext/crm/doctype/prospect/prospect.js:8 @@ -14624,7 +14648,7 @@ msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json #: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/timesheet/timesheet.js:223 +#: erpnext/projects/doctype/timesheet/timesheet.js:225 #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:46 #: erpnext/public/js/sales_trends_filters.js:25 @@ -14672,7 +14696,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/shipment/shipment.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:494 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:493 #: erpnext/stock/doctype/warehouse/warehouse.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.js:36 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:121 @@ -14692,7 +14716,6 @@ msgstr "" #: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/selling.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Customer" msgstr "" @@ -14770,7 +14793,7 @@ msgstr "" #. Label of the customer_contact_display (Small Text) field in DocType #. 'Purchase Order' #. Label of the customer_contact (Small Text) field in DocType 'Delivery Stop' -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1189 #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/stock/doctype/delivery_stop/delivery_stop.json msgid "Customer Contact" @@ -14876,15 +14899,16 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:115 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1245 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1247 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:96 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:187 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:56 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:163 -#: erpnext/accounts/report/gross_profit/gross_profit.py:423 +#: erpnext/accounts/report/gross_profit/gross_profit.py:425 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:208 #: erpnext/accounts/report/sales_register/sales_register.js:27 #: erpnext/accounts/report/sales_register/sales_register.py:216 +#: erpnext/controllers/trends.py:465 #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/doctype/prospect/prospect.json #: erpnext/crm/workspace/crm/crm.json @@ -14937,7 +14961,7 @@ msgstr "" msgid "Customer Items" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1236 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1238 msgid "Customer LPO" msgstr "" @@ -14989,14 +15013,15 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1178 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:92 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:35 -#: erpnext/accounts/report/gross_profit/gross_profit.py:430 +#: erpnext/accounts/report/gross_profit/gross_profit.py:432 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:228 #: erpnext/accounts/report/sales_register/sales_register.py:207 #: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/controllers/trends.py:441 #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json @@ -15095,7 +15120,7 @@ msgstr "" msgid "Customer Provided Item Cost" msgstr "" -#: erpnext/setup/doctype/company/company.py:555 +#: erpnext/setup/doctype/company/company.py:557 msgid "Customer Service" msgstr "" @@ -15152,12 +15177,16 @@ msgstr "" msgid "Customer required for 'Customerwise Discount'" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:885 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:891 #: erpnext/selling/doctype/sales_order/sales_order.py:392 #: erpnext/stock/doctype/delivery_note/delivery_note.py:393 msgid "Customer {0} does not belong to project {1}" msgstr "" +#: erpnext/selling/doctype/customer/customer.py:605 +msgid "Customer {0} has an overdue billing limit. Overdue amount {1} exceeds the allowed threshold {2}." +msgstr "" + #. Label of the customer_item_code (Data) field in DocType 'POS Invoice Item' #. Label of the customer_item_code (Data) field in DocType 'Sales Invoice Item' #. Label of the customer_item_code (Data) field in DocType 'Quotation Item' @@ -15266,7 +15295,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:751 +#: erpnext/projects/doctype/project/project.py:781 msgid "Daily Project Summary for {0}" msgstr "" @@ -15573,7 +15602,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:178 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1220 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1222 #: erpnext/controllers/sales_and_purchase_return.py:466 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:304 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45 @@ -15601,13 +15630,13 @@ msgstr "" #. Label of the debit_to (Link) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:769 -#: erpnext/controllers/accounts_controller.py:1287 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:775 +#: erpnext/controllers/accounts_controller.py:1214 msgid "Debit To" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:760 msgid "Debit To is required" msgstr "" @@ -15655,11 +15684,11 @@ msgstr "" msgid "Debtor Turnover Ratio" msgstr "" -#: erpnext/accounts/party.py:626 +#: erpnext/accounts/party.py:642 msgid "Debtor/Creditor" msgstr "" -#: erpnext/accounts/party.py:629 +#: erpnext/accounts/party.py:645 msgid "Debtor/Creditor Advance" msgstr "" @@ -15683,7 +15712,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:639 +#: erpnext/public/js/utils/sales_common.js:637 msgid "Declare Lost" msgstr "" @@ -15714,11 +15743,6 @@ msgstr "" msgid "Deductee Details" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/taxes.json -msgid "Deduction Certificate" -msgstr "" - #. Label of the deductions_or_loss_section (Section Break) field in DocType #. 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -15761,14 +15785,14 @@ msgstr "" #. Label of the default_advance_paid_account (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:388 +#: erpnext/setup/doctype/company/company.py:390 msgid "Default Advance Paid Account" msgstr "" #. Label of the default_advance_received_account (Link) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:377 +#: erpnext/setup/doctype/company/company.py:379 msgid "Default Advance Received Account" msgstr "" @@ -15783,7 +15807,7 @@ msgstr "" msgid "Default BOM" msgstr "" -#: erpnext/stock/doctype/item/item.py:506 +#: erpnext/stock/doctype/item/item.py:511 msgid "Default BOM ({0}) must be active for this item or its template" msgstr "" @@ -15854,6 +15878,11 @@ msgstr "" msgid "Default Costing Rate" msgstr "" +#. Label of the country (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Country" +msgstr "" + #. Label of the default_currency (Link) field in DocType 'Company' #. Label of the default_currency (Link) field in DocType 'Global Defaults' #: erpnext/setup/doctype/company/company.json @@ -16106,15 +16135,15 @@ msgstr "" msgid "Default Unit of Measure" msgstr "" -#: erpnext/stock/doctype/item/item.py:1428 +#: erpnext/stock/doctype/item/item.py:1433 msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You need to either cancel the linked documents or create a new Item." msgstr "" -#: erpnext/stock/doctype/item/item.py:1408 +#: erpnext/stock/doctype/item/item.py:1413 msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM." msgstr "" -#: erpnext/stock/doctype/item/item.py:1012 +#: erpnext/stock/doctype/item/item.py:1017 msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'" msgstr "" @@ -16130,7 +16159,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Stock Reconciliation' #. Label of the default_warehouse (Link) field in DocType 'Stock Settings' #: erpnext/manufacturing/doctype/bom/bom.json -#: erpnext/stock/doctype/item/item.js:957 +#: erpnext/stock/doctype/item/item.js:978 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json #: erpnext/stock/doctype/stock_settings/stock_settings.json @@ -16168,8 +16197,8 @@ msgstr "" msgid "Default tax templates for sales, purchase and items are created." msgstr "" -#: erpnext/stock/doctype/item/item.js:949 -#: erpnext/stock/doctype/item/item.js:961 +#: erpnext/stock/doctype/item/item.js:970 +#: erpnext/stock/doctype/item/item.js:982 msgid "Default warehouse from Item Defaults." msgstr "" @@ -16417,7 +16446,7 @@ msgstr "" #. Order' #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/buying/doctype/purchase_order/purchase_order_list.js:20 -#: erpnext/controllers/website_list_for_contact.py:216 +#: erpnext/controllers/website_list_for_contact.py:218 #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/shipment/shipment.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -16529,7 +16558,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:908 +#: erpnext/public/js/utils.js:920 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16591,7 +16620,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:59 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:152 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:134 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Delivery Note" @@ -16634,11 +16663,11 @@ msgstr "" msgid "Delivery Note Trends" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028 msgid "Delivery Note {0} is not submitted" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1240 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75 msgid "Delivery Notes" msgstr "" @@ -16846,7 +16875,7 @@ msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:109 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181 #: erpnext/accounts/report/account_balance/account_balance.js:44 -#: erpnext/accounts/report/cash_flow/cash_flow.py:170 +#: erpnext/accounts/report/cash_flow/cash_flow.py:186 #: erpnext/assets/doctype/asset/asset.json msgid "Depreciation" msgstr "" @@ -16854,7 +16883,7 @@ msgstr "" #. Label of the depreciation_amount (Currency) field in DocType 'Depreciation #. Schedule' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:167 -#: erpnext/assets/doctype/asset/asset.js:384 +#: erpnext/assets/doctype/asset/asset.js:392 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Depreciation Amount" msgstr "" @@ -16937,7 +16966,7 @@ msgstr "" msgid "Depreciation Posting Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:928 +#: erpnext/assets/doctype/asset/asset.js:936 msgid "Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" @@ -17006,7 +17035,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:618 +#: erpnext/public/js/utils/sales_common.js:616 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -17209,6 +17238,10 @@ msgstr "" msgid "Dimension Name" msgstr "" +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 +msgid "Dimension-based grouping is currently unsupported in Custom Financial Report" +msgstr "" + #. Name of a report #: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.json msgid "Dimension-wise Accounts Balance Report" @@ -17240,25 +17273,6 @@ msgstr "" msgid "Direct return is not allowed for Timesheet." msgstr "" -#. Label of the disabled (Check) field in DocType 'Account' -#. Label of the disabled (Check) field in DocType 'Accounting Dimension' -#. Label of the disable (Check) field in DocType 'Pricing Rule' -#. Label of the disable (Check) field in DocType 'Promotional Scheme' -#. Label of the disable (Check) field in DocType 'Promotional Scheme Price -#. Discount' -#. Label of the disable (Check) field in DocType 'Promotional Scheme Product -#. Discount' -#. Label of the disable (Check) field in DocType 'Putaway Rule' -#: erpnext/accounts/doctype/account/account.json -#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json -#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.json -msgid "Disable" -msgstr "" - #. Label of the disable_capacity_planning (Check) field in DocType #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json @@ -17383,9 +17397,9 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' -#: erpnext/manufacturing/doctype/work_order/work_order.js:1077 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:392 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:435 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1081 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:391 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:434 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Disassemble" @@ -17618,7 +17632,7 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3095 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3096 msgid "Discount of {0} applied as per Payment Term" msgstr "" @@ -17690,7 +17704,7 @@ msgstr "" msgid "Dislikes" msgstr "" -#: erpnext/setup/doctype/company/company.py:549 +#: erpnext/setup/doctype/company/company.py:551 msgid "Dispatch" msgstr "" @@ -17930,7 +17944,7 @@ msgstr "" msgid "Do not import" msgstr "" -#. Description of the 'Hide Currency Symbol' (Select) field in DocType 'Global +#. Description of the 'Hide Currency Symbol' (Check) field in DocType 'Global #. Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "Do not show any symbol like $ etc next to currencies." @@ -17954,7 +17968,7 @@ msgstr "" msgid "Do not use Batch-wise Valuation" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:966 +#: erpnext/assets/doctype/asset/asset.js:974 msgid "Do you really want to restore this scrapped asset?" msgstr "" @@ -17962,11 +17976,7 @@ msgstr "" msgid "Do you still want to enable immutable ledger?" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:109 -msgid "Do you still want to enable negative inventory?" -msgstr "" - -#: erpnext/stock/doctype/item/item.js:42 +#: erpnext/stock/doctype/item/item.js:44 msgid "Do you want to change valuation method?" msgstr "" @@ -17974,7 +17984,7 @@ msgstr "" msgid "Do you want to notify all the customers by email?" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:334 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:360 msgid "Do you want to submit the material request" msgstr "" @@ -18218,23 +18228,21 @@ msgstr "" msgid "Drop some files here, or click to select files" msgstr "" -#: erpnext/accounts/party.py:719 +#: erpnext/accounts/party.py:735 msgid "Due Date cannot be after {0}" msgstr "" -#: erpnext/accounts/party.py:695 +#: erpnext/accounts/party.py:711 msgid "Due Date cannot be before {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:167 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:175 msgid "Due to stock closing entry {0}, you cannot repost item valuation before {1}" msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/dunning/dunning.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:158 -#: erpnext/workspace_sidebar/banking.json msgid "Dunning" msgstr "" @@ -18266,6 +18274,14 @@ msgstr "" msgid "Dunning Letter Text" msgstr "" +#: erpnext/accounts/doctype/dunning/dunning.py:184 +msgid "Dunning Letter for Dunning Type {0} in language '{1}' not found." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.py:188 +msgid "Dunning Letter for Dunning Type {0} not found." +msgstr "" + #. Label of the dunning_level (Int) field in DocType 'Overdue Payment' #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json msgid "Dunning Level" @@ -18274,10 +18290,8 @@ msgstr "" #. Label of the dunning_type (Link) field in DocType 'Dunning' #. Name of a DocType #. Label of the dunning_type (Data) field in DocType 'Dunning Type' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/dunning/dunning.json #: erpnext/accounts/doctype/dunning_type/dunning_type.json -#: erpnext/workspace_sidebar/banking.json msgid "Dunning Type" msgstr "" @@ -18331,7 +18345,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1522 +#: erpnext/stock/serial_batch_bundle.py:1528 msgid "Duplicate Serial Number Error" msgstr "" @@ -18355,6 +18369,10 @@ msgstr "" msgid "Duplicate item group found in the item group table" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:133 +msgid "Duplicate languages found on Dunning Letter Text. Keep only one of them." +msgstr "" + #: erpnext/projects/doctype/project/project.js:186 msgid "Duplicate project has been created" msgstr "" @@ -18429,6 +18447,7 @@ msgstr "" #. Label of a Desktop Icon #: erpnext/desktop_icon/erpnext.json +#: erpnext/public/js/shop_floor/shop_floor.js:103 msgid "ERPNext" msgstr "" @@ -18485,7 +18504,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:212 +#: erpnext/controllers/item_variant.py:274 msgid "Edit Not Allowed" msgstr "" @@ -18780,7 +18799,7 @@ msgstr "" #: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:24 #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:10 #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:45 -#: erpnext/public/js/shop_floor/shop_floor.js:690 +#: erpnext/public/js/shop_floor/shop_floor.js:726 #: erpnext/quality_management/doctype/non_conformance/non_conformance.json #: erpnext/setup/doctype/company/company.json #: erpnext/setup/doctype/department/department.json @@ -18906,7 +18925,7 @@ msgstr "" msgid "Employee {0} not found" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:684 +#: erpnext/public/js/shop_floor/shop_floor.js:720 msgid "Employees" msgstr "" @@ -18933,7 +18952,7 @@ msgstr "" msgid "Enable Accounting Dimensions" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1743 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1754 msgid "Enable Allow Partial Reservation in the Stock Settings to reserve partial stock." msgstr "" @@ -18949,7 +18968,7 @@ msgstr "" msgid "Enable Auto Email" msgstr "" -#: erpnext/stock/doctype/item/item.py:1216 +#: erpnext/stock/doctype/item/item.py:1221 msgid "Enable Auto Re-Order" msgstr "" @@ -19044,6 +19063,12 @@ msgstr "" msgid "Enable Opportunity Creation from Contact Us" msgstr "" +#. Label of the enable_overdue_billing_threshold (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Overdue Billing Threshold" +msgstr "" + #. Label of the enable_parallel_reposting (Check) field in DocType 'Stock #. Reposting Settings' #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json @@ -19268,8 +19293,8 @@ msgstr "" msgid "End Date cannot be before Start Date." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:880 -#: erpnext/public/js/templates/shop_floor_template.html:766 +#: erpnext/public/js/shop_floor/shop_floor.js:916 +#: erpnext/public/js/templates/shop_floor_template.html:786 msgid "End Session" msgstr "" @@ -19280,14 +19305,14 @@ msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:331 #: erpnext/manufacturing/doctype/job_card/job_card.js:399 #: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json -#: erpnext/public/js/shop_floor/shop_floor.js:815 +#: erpnext/public/js/shop_floor/shop_floor.js:851 #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json #: erpnext/support/doctype/service_day/service_day.json #: erpnext/telephony/doctype/call_log/call_log.json msgid "End Time" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:367 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:366 msgid "End Transit" msgstr "" @@ -19299,11 +19324,11 @@ msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:25 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:147 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:89 -#: erpnext/public/js/financial_statements.js:443 +#: erpnext/public/js/financial_statements.js:480 msgid "End Year" msgstr "" -#: erpnext/accounts/report/financial_statements.py:133 +#: erpnext/accounts/report/financial_statements.py:310 msgid "End Year cannot be before Start Year" msgstr "" @@ -19322,7 +19347,7 @@ msgstr "" msgid "End of Life" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1378 +#: erpnext/public/js/shop_floor/shop_floor.js:1413 msgid "End session for active job" msgstr "" @@ -19401,7 +19426,7 @@ msgstr "" msgid "Enter amount to be redeemed." msgstr "" -#: erpnext/stock/doctype/item/item.js:1556 +#: erpnext/stock/doctype/item/item.js:1577 msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field." msgstr "" @@ -19413,7 +19438,7 @@ msgstr "" msgid "Enter customer's phone number" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:937 +#: erpnext/assets/doctype/asset/asset.js:945 msgid "Enter date to scrap asset" msgstr "" @@ -19456,15 +19481,15 @@ msgstr "" msgid "Enter the name of the bank or lending institution before submitting." msgstr "" -#: erpnext/stock/doctype/item/item.js:1582 +#: erpnext/stock/doctype/item/item.js:1603 msgid "Enter the opening stock units." msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:995 +#: erpnext/manufacturing/doctype/bom/bom.js:999 msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1243 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1254 msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set." msgstr "" @@ -19511,7 +19536,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:275 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19535,7 +19560,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:317 msgid "Error Occurred" msgstr "" @@ -19567,7 +19592,7 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:762 msgid "Error while reposting item valuation" msgstr "" @@ -19625,7 +19650,7 @@ msgstr "" msgid "Example URL" msgstr "" -#: erpnext/stock/doctype/item/item.py:1128 +#: erpnext/stock/doctype/item/item.py:1133 msgid "Example of a linked document: {0}" msgstr "" @@ -19644,7 +19669,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2446 +#: erpnext/stock/stock_ledger.py:2494 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19702,7 +19727,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json -#: erpnext/setup/doctype/company/company.py:743 +#: erpnext/setup/doctype/company/company.py:745 msgid "Exchange Gain/Loss" msgstr "" @@ -19807,7 +19832,7 @@ msgstr "" msgid "Excise Entry" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:1520 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:1524 msgid "Excise Invoice" msgstr "" @@ -19998,7 +20023,7 @@ msgstr "" msgid "Expected Value After Useful Life" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:936 +#: erpnext/public/js/shop_floor/shop_floor.js:972 msgid "Expected: {0}" msgstr "" @@ -20016,12 +20041,12 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:206 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:220 +#: erpnext/stock/services/base_stock_gl_composer.py:276 msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account" msgstr "" @@ -20073,7 +20098,7 @@ msgstr "" msgid "Expense Account" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:199 +#: erpnext/stock/services/base_stock_gl_composer.py:266 msgid "Expense Account Missing" msgstr "" @@ -20107,6 +20132,32 @@ msgstr "" msgid "Expenses" msgstr "" +#. Label of the expenses_added_to_stock_account (Link) field in DocType +#. 'Company' +#. Label of the expenses_added_to_stock_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_expenses_added_to_stock_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Expenses Added To Stock Account" +msgstr "" + +#. Label of the expenses_added_to_stock_contra_account (Link) field in DocType +#. 'Company' +#. Label of the expenses_added_to_stock_contra_account (Link) field in DocType +#. 'Item Default' +#. Label of the vf_expenses_added_to_stock_contra_account (Read Only) field in +#. DocType 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Expenses Added To Stock Contra Account" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:217 +msgid "Expenses Added To Stock for Item {0}" +msgstr "" + #. Option for the 'Account Type' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92 @@ -20124,7 +20175,7 @@ msgid "Expenses Included In Valuation" msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:310 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:518 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:517 msgid "Expired Batches" msgstr "" @@ -20261,11 +20312,6 @@ msgstr "" msgid "FIFO/LIFO Queue" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "FX Revaluation" -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Fahrenheit" @@ -20314,7 +20360,7 @@ msgstr "" msgid "Failed to personalize your setup" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:269 +#: erpnext/assets/doctype/asset/asset.js:277 msgid "Failed to post depreciation entries" msgstr "" @@ -20339,7 +20385,7 @@ msgstr "" msgid "Failed to setup defaults" msgstr "" -#: erpnext/setup/doctype/company/company.py:923 +#: erpnext/setup/doctype/company/company.py:925 msgid "Failed to setup defaults for country {0}. Please contact support." msgstr "" @@ -20450,8 +20496,8 @@ msgstr "" msgid "Fetch Value From" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:372 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:833 +#: erpnext/stock/doctype/material_request/material_request.js:373 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:832 msgid "Fetch exploded BOM (including sub-assemblies)" msgstr "" @@ -20537,7 +20583,7 @@ msgstr "" #: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 -#: erpnext/public/js/financial_statements.js:395 +#: erpnext/public/js/financial_statements.js:432 msgid "Filter Based On" msgstr "" @@ -20618,7 +20664,6 @@ msgstr "" #. Label of the finance_book (Link) field in DocType 'Asset Finance Book' #. Label of the finance_book (Link) field in DocType 'Asset Shift Allocation' #. Label of the finance_book (Link) field in DocType 'Asset Value Adjustment' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json #: erpnext/accounts/doctype/finance_book/finance_book.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json @@ -20648,8 +20693,7 @@ msgstr "" #: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:48 -#: erpnext/public/js/financial_statements.js:389 -#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/public/js/financial_statements.js:426 msgid "Finance Book" msgstr "" @@ -20693,11 +20737,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:288 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:285 msgid "Financial Report Template {0} not found" msgstr "" @@ -20719,7 +20763,7 @@ msgstr "" #. Label of a Card Break in the Financial Reports Workspace #: erpnext/accounts/workspace/financial_reports/financial_reports.json -#: erpnext/public/js/financial_statements.js:325 +#: erpnext/public/js/financial_statements.js:350 msgid "Financial Statements" msgstr "" @@ -20733,9 +20777,9 @@ msgstr "" msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) " msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:905 -#: erpnext/manufacturing/doctype/work_order/work_order.js:920 -#: erpnext/manufacturing/doctype/work_order/work_order.js:929 +#: erpnext/manufacturing/doctype/work_order/work_order.js:909 +#: erpnext/manufacturing/doctype/work_order/work_order.js:924 +#: erpnext/manufacturing/doctype/work_order/work_order.js:933 msgid "Finish" msgstr "" @@ -20766,7 +20810,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:930 +#: erpnext/public/js/utils.js:942 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20779,7 +20823,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:948 +#: erpnext/public/js/utils.js:960 msgid "Finished Good Item Qty" msgstr "" @@ -20846,7 +20890,7 @@ msgid "Finished Good {0} must be a sub-contracted item." msgstr "" #: erpnext/selling/doctype/sales_order/sales_order.js:1475 -#: erpnext/setup/doctype/company/company.py:454 +#: erpnext/setup/doctype/company/company.py:456 msgid "Finished Goods" msgstr "" @@ -20887,7 +20931,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:900 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20916,7 +20960,7 @@ msgid "First Response Due" msgstr "" #: erpnext/support/doctype/issue/test_issue.py:238 -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:906 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:909 msgid "First Response SLA Failed by {}" msgstr "" @@ -20961,7 +21005,6 @@ msgstr "" #. Certificate' #. Label of the fiscal_year (Link) field in DocType 'Target Detail' #. Label of the fiscal_year (Data) field in DocType 'Stock Ledger Entry' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/fiscal_year/fiscal_year.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json @@ -20982,7 +21025,6 @@ msgstr "" #: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:15 #: erpnext/setup/doctype/target_detail/target_detail.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Fiscal Year" msgstr "" @@ -21000,7 +21042,7 @@ msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" #: erpnext/accounts/report/trial_balance/trial_balance.py:49 -#: erpnext/controllers/trends.py:59 +#: erpnext/controllers/trends.py:63 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -21044,7 +21086,7 @@ msgstr "" msgid "Fixed Asset Defaults" msgstr "" -#: erpnext/stock/doctype/item/item.py:374 +#: erpnext/stock/doctype/item/item.py:379 msgid "Fixed Asset Item must be a non-stock item." msgstr "" @@ -21169,7 +21211,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:395 +#: erpnext/public/js/utils/sales_common.js:393 msgid "For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table." msgstr "" @@ -21231,7 +21273,7 @@ msgstr "" msgid "For Raw Materials" msgstr "" -#: erpnext/controllers/accounts_controller.py:981 +#: erpnext/controllers/accounts_controller.py:908 msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}" msgstr "" @@ -21265,14 +21307,19 @@ msgstr "" #. Label of the warehouse (Link) field in DocType 'Material Request Plan Item' #. Label of the for_warehouse (Link) field in DocType 'Production Plan' #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:497 #: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:180 #: erpnext/selling/doctype/sales_order/sales_order.js:1488 -#: erpnext/stock/doctype/material_request/material_request.js:361 +#: erpnext/stock/doctype/material_request/material_request.js:362 #: erpnext/templates/form_grid/material_request_grid.html:36 msgid "For Warehouse" msgstr "" +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:167 +msgid "For Warehouse {0} must be a child of the group warehouse {1}." +msgstr "" + #: erpnext/public/js/utils/serial_no_batch_selector.js:136 msgid "For Work Order" msgstr "" @@ -21360,7 +21407,7 @@ msgstr "" msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:270 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21370,7 +21417,7 @@ msgstr "" msgid "For service item" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:178 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:196 msgid "For the 'Apply Rule On Other' condition the field {0} is mandatory" msgstr "" @@ -21379,7 +21426,7 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1234 +#: erpnext/stock/serial_batch_bundle.py:1240 msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." msgstr "" @@ -21392,7 +21439,7 @@ msgctxt "Clear payment terms template and/or payment schedule when due date is c msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:272 +#: erpnext/stock/services/serial_batch_bundle_service.py:274 msgid "For the {0}, no stock is available for the return in the warehouse {1}." msgstr "" @@ -21486,7 +21533,7 @@ msgstr "" msgid "Frappe CRM Allowed User" msgstr "" -#: erpnext/crm/frappe_crm_api.py:183 +#: erpnext/crm/frappe_crm_api.py:186 msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." msgstr "" @@ -21522,7 +21569,7 @@ msgstr "" msgid "Free On Board" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:283 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:301 msgid "Free item code is not selected" msgstr "" @@ -21601,7 +21648,7 @@ msgstr "" msgid "From Date and To Date are Mandatory" msgstr "" -#: erpnext/accounts/report/financial_statements.py:138 +#: erpnext/accounts/report/financial_statements.py:315 msgid "From Date and To Date are mandatory" msgstr "" @@ -21609,7 +21656,7 @@ msgstr "" msgid "From Date and To Date are required" msgstr "" -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:30 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:40 msgid "From Date and To Date lie in different Fiscal Year" msgstr "" @@ -21632,9 +21679,9 @@ msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:86 #: erpnext/accounts/report/pos_register/pos_register.py:124 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:32 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:25 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:34 -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:38 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:35 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:39 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:49 msgid "From Date must be before To Date" msgstr "" @@ -21741,7 +21788,7 @@ msgstr "" msgid "From Range" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:95 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:97 msgid "From Range has to be less than To Range" msgstr "" @@ -21994,13 +22041,13 @@ msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1232 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1234 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179 msgid "Future Payment Amount" msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1231 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 msgid "Future Payment Ref" msgstr "" @@ -22091,7 +22138,7 @@ msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:138 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:225 -#: erpnext/setup/doctype/company/company.py:751 +#: erpnext/setup/doctype/company/company.py:753 msgid "Gain/Loss on Asset Disposal" msgstr "" @@ -22158,7 +22205,10 @@ msgstr "" msgid "General Ledger requires {0} to be synced to DuckDB" msgstr "" +#. Label of the general_settings_section (Section Break) field in DocType +#. 'Global Defaults' #. Label of the gs (Section Break) field in DocType 'Item Group' +#: erpnext/setup/doctype/global_defaults/global_defaults.json #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" msgstr "" @@ -22270,7 +22320,7 @@ msgstr "" msgid "Get Current Stock" msgstr "" -#: erpnext/selling/doctype/customer/customer.js:190 +#: erpnext/selling/doctype/customer/customer.js:199 msgid "Get Customer Group Details" msgstr "" @@ -22334,15 +22384,15 @@ msgstr "" #: erpnext/selling/doctype/sales_order/sales_order.js:1254 #: erpnext/stock/doctype/delivery_note/delivery_note.js:187 #: erpnext/stock/doctype/delivery_note/delivery_note.js:239 -#: erpnext/stock/doctype/material_request/material_request.js:141 -#: erpnext/stock/doctype/material_request/material_request.js:238 +#: erpnext/stock/doctype/material_request/material_request.js:144 +#: erpnext/stock/doctype/material_request/material_request.js:241 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:144 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:244 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:461 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:508 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:541 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:632 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:800 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:460 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:507 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:540 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:631 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:799 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:165 msgid "Get Items From" msgstr "" @@ -22357,9 +22407,9 @@ msgstr "" msgid "Get Items for Purchase Only" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:346 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:836 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:849 +#: erpnext/stock/doctype/material_request/material_request.js:347 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:835 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:848 msgid "Get Items from BOM" msgstr "" @@ -22443,7 +22493,7 @@ msgstr "" msgid "Get Started Sections" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:552 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:579 msgid "Get Stock" msgstr "" @@ -22453,7 +22503,7 @@ msgstr "" msgid "Get Sub Assembly Items" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:151 +#: erpnext/buying/doctype/supplier/supplier.js:160 msgid "Get Supplier Group Details" msgstr "" @@ -22545,7 +22595,7 @@ msgstr "" msgid "Goods" msgstr "" -#: erpnext/setup/doctype/company/company.py:455 +#: erpnext/setup/doctype/company/company.py:457 #: erpnext/stock/doctype/stock_entry/stock_entry_list.js:34 msgid "Goods In Transit" msgstr "" @@ -22554,7 +22604,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1348 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22785,7 +22835,7 @@ msgstr "" #. Label of the gross_profit (Currency) field in DocType 'Sales Order Item' #. Label of a Workspace Sidebar Item #: erpnext/accounts/report/gross_profit/gross_profit.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:375 +#: erpnext/accounts/report/gross_profit/gross_profit.py:377 #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -22797,7 +22847,7 @@ msgstr "" msgid "Gross Profit / Loss" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:382 +#: erpnext/accounts/report/gross_profit/gross_profit.py:384 msgid "Gross Profit Percent" msgstr "" @@ -22856,6 +22906,12 @@ msgstr "" msgid "Group by" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 +#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +msgid "Group by Dimension" +msgstr "" + #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:61 msgid "Group by Material Request" msgstr "" @@ -22906,8 +22962,8 @@ msgstr "" msgid "Groups" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:32 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:32 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:39 msgid "Growth View" msgstr "" @@ -22965,7 +23021,7 @@ msgstr "" #: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:72 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:77 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:59 -#: erpnext/public/js/financial_statements.js:456 +#: erpnext/public/js/financial_statements.js:493 #: erpnext/public/js/purchase_trends_filters.js:21 #: erpnext/public/js/sales_trends_filters.js:13 #: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:34 @@ -23180,7 +23236,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2142 +#: erpnext/stock/stock_ledger.py:2190 msgid "Here are the options to proceed:" msgstr "" @@ -23208,7 +23264,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:615 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:764 msgid "Hi," msgstr "" @@ -23223,8 +23279,7 @@ msgstr "" msgid "Hidden list maintaining the list of contacts linked to Shareholder" msgstr "" -#. Label of the hide_currency_symbol (Select) field in DocType 'Global -#. Defaults' +#. Label of the hide_currency_symbol (Check) field in DocType 'Global Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "Hide Currency Symbol" msgstr "" @@ -23412,7 +23467,7 @@ msgstr "" msgid "Hrs" msgstr "" -#: erpnext/setup/doctype/company/company.py:561 +#: erpnext/setup/doctype/company/company.py:563 msgid "Human Resources" msgstr "" @@ -23586,6 +23641,23 @@ msgstr "" msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount" msgstr "" +#. Description of the 'Restrict to Companies' (Check) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "If checked, this Customer is only available for transactions in the companies listed below." +msgstr "" + +#. Description of the 'Restrict to Companies' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If checked, this Item is only available for transactions in the companies listed below." +msgstr "" + +#. Description of the 'Restrict to Companies' (Check) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "If checked, this Supplier is only available for transactions in the companies listed below." +msgstr "" + #. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in #. DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -23844,15 +23916,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2152 +#: erpnext/stock/stock_ledger.py:2200 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:201 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:202 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23881,7 +23953,7 @@ msgstr "" msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1276 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1287 msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected." msgstr "" @@ -23890,7 +23962,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2145 +#: erpnext/stock/stock_ledger.py:2193 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23900,7 +23972,7 @@ msgstr "" msgid "If the reorder check is set at the Group warehouse level, the available quantity becomes the sum of the projected quantities of all its child warehouses." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1295 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1306 msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed." msgstr "" @@ -23977,7 +24049,7 @@ msgstr "" msgid "If yes, then this warehouse will be used to store rejected materials" msgstr "" -#: erpnext/stock/doctype/item/item.js:1568 +#: erpnext/stock/doctype/item/item.js:1589 msgid "If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item." msgstr "" @@ -23991,7 +24063,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:475 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24158,7 +24230,7 @@ msgstr "" msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports" msgstr "" -#: erpnext/stock/doctype/item/item.py:269 +#: erpnext/stock/doctype/item/item.py:274 msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}." msgstr "" @@ -24323,13 +24395,13 @@ msgid "In Production" msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:112 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/stock_balance/stock_balance.py:547 #: erpnext/stock/report/stock_ledger/stock_ledger.py:317 msgid "In Qty" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:659 +#: erpnext/public/js/templates/shop_floor_template.html:679 msgid "In Queue" msgstr "" @@ -24347,11 +24419,11 @@ msgstr "" msgid "In Transit" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:477 +#: erpnext/stock/doctype/material_request/material_request.js:478 msgid "In Transit Transfer" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:446 +#: erpnext/stock/doctype/material_request/material_request.js:447 msgid "In Transit Warehouse" msgstr "" @@ -24441,7 +24513,7 @@ msgstr "" msgid "In row {0} of Appointment Booking Slots: \"To Time\" must be later than \"From Time\"." msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:815 +#: erpnext/public/js/templates/shop_floor_template.html:835 msgid "In source" msgstr "" @@ -24458,7 +24530,7 @@ msgstr "" msgid "In this case, the amount will be calculated as 25% of the transaction amount. If the transaction amount is 200, then this will be calculated as 200 * 0.25 = 50." msgstr "" -#: erpnext/stock/doctype/item/item.js:1601 +#: erpnext/stock/doctype/item/item.js:1622 msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc." msgstr "" @@ -24538,13 +24610,13 @@ msgstr "" msgid "Include Default FB Assets" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:45 -#: erpnext/accounts/report/cash_flow/cash_flow.js:37 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:52 +#: erpnext/accounts/report/cash_flow/cash_flow.js:44 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:131 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:85 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:29 #: erpnext/accounts/report/general_ledger/general_ledger.js:193 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:46 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:53 #: erpnext/accounts/report/trial_balance/trial_balance.js:105 msgid "Include Default FB Entries" msgstr "" @@ -24700,8 +24772,8 @@ msgstr "" #: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 -#: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 +#: erpnext/accounts/report/financial_statements.py:1004 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:204 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24727,6 +24799,10 @@ msgstr "" msgid "Income Account" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:86 +msgid "Income Account Validation Error" +msgstr "" + #. Label of the income_and_expense_account (Section Break) field in DocType #. 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -24738,7 +24814,9 @@ msgstr "" msgid "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront." msgstr "" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Incoming Bills" msgstr "" @@ -24753,7 +24831,9 @@ msgstr "" msgid "Incoming Call Settings" msgstr "" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Incoming Payment" msgstr "" @@ -24783,7 +24863,7 @@ msgstr "" msgid "Incoming call from {0}" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:115 msgid "Incompatible Setting Detected" msgstr "" @@ -24800,7 +24880,7 @@ msgstr "" msgid "Incorrect Batch Consumed" msgstr "" -#: erpnext/stock/doctype/item/item.py:604 +#: erpnext/stock/doctype/item/item.py:609 msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" @@ -24917,7 +24997,7 @@ msgstr "" msgid "Increment" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:98 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:100 msgid "Increment cannot be 0" msgstr "" @@ -25021,7 +25101,7 @@ msgstr "" msgid "Initiated" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:964 +#: erpnext/public/js/shop_floor/shop_floor.js:1000 msgid "Inspect {0} for job card {1}" msgstr "" @@ -25033,7 +25113,7 @@ msgid "Inspected By" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:892 -#: erpnext/public/js/shop_floor/shop_floor.js:1002 +#: erpnext/public/js/shop_floor/shop_floor.js:1038 #: erpnext/stock/services/quality_inspection_service.py:147 msgid "Inspection Rejected" msgstr "" @@ -25088,7 +25168,7 @@ msgstr "" msgid "Installation Note Item" msgstr "" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:623 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:640 msgid "Installation Note {0} has already been submitted" msgstr "" @@ -25129,22 +25209,22 @@ msgstr "" #: erpnext/accounts/services/child_item_update.py:213 #: erpnext/accounts/services/child_item_update.py:235 -#: erpnext/controllers/accounts_controller.py:1734 -#: erpnext/controllers/accounts_controller.py:1740 -#: erpnext/controllers/accounts_controller.py:1762 +#: erpnext/controllers/accounts_controller.py:1661 +#: erpnext/controllers/accounts_controller.py:1667 +#: erpnext/controllers/accounts_controller.py:1689 msgid "Insufficient Permissions" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:466 #: erpnext/stock/doctype/pick_list/pick_list.py:148 #: erpnext/stock/doctype/pick_list/pick_list.py:166 -#: erpnext/stock/doctype/pick_list/pick_list.py:1118 -#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1827 -#: erpnext/stock/stock_ledger.py:2334 +#: erpnext/stock/doctype/pick_list/pick_list.py:1139 +#: erpnext/stock/serial_batch_bundle.py:1243 erpnext/stock/stock_ledger.py:1875 +#: erpnext/stock/stock_ledger.py:2382 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2397 msgid "Insufficient Stock for Batch" msgstr "" @@ -25274,7 +25354,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2727 msgid "Interest and/or dunning fee" msgstr "" @@ -25299,7 +25379,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:259 +#: erpnext/selling/doctype/customer/customer.py:271 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25325,7 +25405,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:181 +#: erpnext/buying/doctype/supplier/supplier.py:190 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25386,8 +25466,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:381 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:770 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:780 #: erpnext/accounts/services/taxes.py:271 #: erpnext/accounts/services/taxes.py:279 #: erpnext/assets/doctype/asset_category/asset_category.py:69 @@ -25400,7 +25480,7 @@ msgid "Invalid Accounting Dimension" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:402 -#: erpnext/accounts/doctype/payment_request/payment_request.py:1166 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1167 msgid "Invalid Allocated Amount" msgstr "" @@ -25412,11 +25492,11 @@ msgstr "" msgid "Invalid Attribute" msgstr "" -#: erpnext/stock/doctype/item/item.js:1195 +#: erpnext/stock/doctype/item/item.js:1216 msgid "Invalid Attribute Values" msgstr "" -#: erpnext/controllers/accounts_controller.py:530 +#: erpnext/controllers/accounts_controller.py:515 msgid "Invalid Auto Repeat Date" msgstr "" @@ -25449,7 +25529,7 @@ msgstr "" msgid "Invalid Company for Inter Company Transaction." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:972 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:978 msgid "Invalid Configuration" msgstr "" @@ -25459,7 +25539,7 @@ msgstr "" msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:372 +#: erpnext/selling/doctype/customer/customer.py:386 msgid "Invalid Customer Group" msgstr "" @@ -25514,7 +25594,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1566 +#: erpnext/stock/doctype/item/item.py:1571 msgid "Invalid Item Defaults" msgstr "" @@ -25575,7 +25655,7 @@ msgstr "" msgid "Invalid Qty" msgstr "" -#: erpnext/controllers/accounts_controller.py:999 +#: erpnext/controllers/accounts_controller.py:926 msgid "Invalid Quantity" msgstr "" @@ -25600,7 +25680,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:962 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:975 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25617,7 +25697,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:202 +#: erpnext/controllers/item_variant.py:264 msgid "Invalid Value" msgstr "" @@ -25630,7 +25710,7 @@ msgstr "" msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:330 msgid "Invalid condition expression" msgstr "" @@ -25653,11 +25733,11 @@ msgstr "" msgid "Invalid lost reason {0}, please create a new lost reason" msgstr "" -#: erpnext/stock/doctype/item/item.py:478 +#: erpnext/stock/doctype/item/item.py:483 msgid "Invalid naming series (. missing) for {0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:730 +#: erpnext/accounts/doctype/payment_request/payment_request.py:731 msgid "Invalid parameter. 'dn' should be of type str" msgstr "" @@ -25677,11 +25757,11 @@ msgstr "" msgid "Invalid search query" msgstr "" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:313 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:314 msgid "Invalid status group: {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1661 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1703 msgid "Invalid subcontract order field: {0}" msgstr "" @@ -25822,7 +25902,7 @@ msgstr "" msgid "Invoice Document Type Selection Error" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 msgid "Invoice Grand Total" msgstr "" @@ -25927,7 +26007,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:171 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:139 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:140 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:166 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:194 msgid "Invoiced Amount" @@ -25948,7 +26028,7 @@ msgstr "" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1204 #: erpnext/accounts/report/accounts_payable/accounts_payable.js:270 #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:64 @@ -25987,11 +26067,6 @@ msgstr "" msgid "Inward" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Inward Order" -msgstr "" - #. Label of the is_account_payable (Check) field in DocType 'Cheque Print #. Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json @@ -26564,7 +26639,7 @@ msgstr "" msgid "Issue Date" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:180 +#: erpnext/stock/doctype/material_request/material_request.js:183 msgid "Issue Material" msgstr "" @@ -26638,7 +26713,7 @@ msgstr "" msgid "Issuing Date" msgstr "" -#: erpnext/stock/doctype/item/item.py:649 +#: erpnext/stock/doctype/item/item.py:654 msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" @@ -26706,8 +26781,9 @@ msgstr "" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json #: erpnext/controllers/taxes_and_totals.py:1246 +#: erpnext/controllers/trends.py:385 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/bom/bom.js:1088 +#: erpnext/manufacturing/doctype/bom/bom.js:1092 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:25 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:101 @@ -26740,7 +26816,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 -#: erpnext/stock/doctype/stock_settings/stock_settings.js:149 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:131 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:7 @@ -26749,7 +26825,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:93 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js:24 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:32 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:76 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 #: erpnext/stock/report/item_price_stock/item_price_stock.js:8 #: erpnext/stock/report/item_prices/item_prices.py:50 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:88 @@ -26784,8 +26860,6 @@ msgstr "" #: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/manufacturing.json #: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json -#: erpnext/workspace_sidebar/subcontracting.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Item" msgstr "" @@ -26964,7 +27038,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:314 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:68 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:37 -#: erpnext/accounts/report/gross_profit/gross_profit.py:312 +#: erpnext/accounts/report/gross_profit/gross_profit.py:314 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:148 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:167 #: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:37 @@ -27015,11 +27089,11 @@ msgstr "" #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 -#: erpnext/projects/doctype/timesheet/timesheet.js:214 +#: erpnext/projects/doctype/timesheet/timesheet.js:216 #: erpnext/public/js/controllers/transaction.js:2951 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 -#: erpnext/public/js/utils.js:753 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:608 +#: erpnext/public/js/utils.js:765 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -27219,7 +27293,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/gross_profit/gross_profit.js:44 -#: erpnext/accounts/report/gross_profit/gross_profit.py:325 +#: erpnext/accounts/report/gross_profit/gross_profit.py:327 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:21 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:29 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:28 @@ -27234,6 +27308,7 @@ msgstr "" #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:30 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:40 #: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/trends.py:398 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json @@ -27269,7 +27344,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/page/stock_balance/stock_balance.js:35 -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:43 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:54 #: erpnext/stock/report/delayed_item_report/delayed_item_report.js:48 #: erpnext/stock/report/delayed_order_report/delayed_order_report.js:48 #: erpnext/stock/report/item_prices/item_prices.py:52 @@ -27303,15 +27378,15 @@ msgstr "" msgid "Item Group Name" msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:119 +#: erpnext/setup/doctype/item_group/item_group.js:136 msgid "Item Group Override" msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:82 +#: erpnext/setup/doctype/item_group/item_group.js:99 msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:541 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27454,7 +27529,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:74 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:71 -#: erpnext/accounts/report/gross_profit/gross_profit.py:319 +#: erpnext/accounts/report/gross_profit/gross_profit.py:321 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:34 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:154 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:173 @@ -27472,6 +27547,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:34 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:206 +#: erpnext/controllers/trends.py:386 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:101 #: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json @@ -27505,7 +27581,7 @@ msgstr "" #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 #: erpnext/public/js/controllers/transaction.js:2957 -#: erpnext/public/js/utils.js:844 +#: erpnext/public/js/utils.js:856 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27535,7 +27611,7 @@ msgstr "" #: erpnext/stock/report/available_batch_report/available_batch_report.py:32 #: erpnext/stock/report/available_serial_no/available_serial_no.py:99 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:33 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:77 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:153 #: erpnext/stock/report/item_price_stock/item_price_stock.py:24 #: erpnext/stock/report/item_prices/item_prices.py:51 @@ -27609,8 +27685,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1182 -#: erpnext/stock/get_item_details.py:1206 +#: erpnext/stock/get_item_details.py:1181 +#: erpnext/stock/get_item_details.py:1205 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27618,11 +27694,11 @@ msgstr "" msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates." msgstr "" -#: erpnext/stock/doctype/item/item.py:183 +#: erpnext/stock/doctype/item/item.py:187 msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1165 +#: erpnext/stock/get_item_details.py:1164 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27686,7 +27762,9 @@ msgid "Item Shortage Report" msgstr "" #. Name of a DocType +#. Label of a Link in the Stock Workspace #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json +#: erpnext/stock/workspace/stock/stock.json msgid "Item Standard Cost" msgstr "" @@ -27763,7 +27841,6 @@ msgstr "" #. Label of the item_tax_template (Link) field in DocType 'Item Tax' #. Label of the item_tax_template (Link) field in DocType 'Purchase Receipt #. Item' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/item_tax_template/item_tax_template.json #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -27776,7 +27853,6 @@ msgstr "" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/item_tax/item_tax.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/workspace_sidebar/taxes.json msgid "Item Tax Template" msgstr "" @@ -27813,7 +27889,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item -#: erpnext/stock/doctype/item/item.js:235 +#: erpnext/stock/doctype/item/item.js:250 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/erpnext_settings.json @@ -27821,11 +27897,11 @@ msgstr "" msgid "Item Variant Settings" msgstr "" -#: erpnext/stock/doctype/item/item.js:1417 +#: erpnext/stock/doctype/item/item.js:1438 msgid "Item Variant {0} already exists with same attributes" msgstr "" -#: erpnext/stock/doctype/item/item.py:840 +#: erpnext/stock/doctype/item/item.py:845 msgid "Item Variants updated" msgstr "" @@ -27933,7 +28009,7 @@ msgstr "" msgid "Item for row {0} does not match Material Request" msgstr "" -#: erpnext/stock/doctype/item/item.py:899 +#: erpnext/stock/doctype/item/item.py:904 msgid "Item has variants." msgstr "" @@ -27959,10 +28035,14 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:622 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:635 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" +#: erpnext/stock/doctype/material_request/material_request.py:231 +msgid "Item rates have been updated based on the selected Buying Price List {0}" +msgstr "" + #. Label of the item (Link) field in DocType 'BOM' #. Label of the finished_good (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/bom/bom.json @@ -27978,7 +28058,7 @@ msgstr "" msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" -#: erpnext/stock/doctype/item/item.py:1056 +#: erpnext/stock/doctype/item/item.py:1061 msgid "Item variant {0} exists with same attributes" msgstr "" @@ -28003,7 +28083,7 @@ msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:347 -#: erpnext/stock/doctype/item/item.py:695 +#: erpnext/stock/doctype/item/item.py:700 msgid "Item {0} does not exist" msgstr "" @@ -28012,7 +28092,7 @@ msgid "Item {0} does not exist in the system or has expired" msgstr "" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1489 -#: erpnext/stock/services/serial_batch_bundle_service.py:388 +#: erpnext/stock/services/serial_batch_bundle_service.py:390 msgid "Item {0} does not exist." msgstr "" @@ -28036,15 +28116,15 @@ msgstr "" msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity." msgstr "" -#: erpnext/stock/doctype/item/item.py:1278 +#: erpnext/stock/doctype/item/item.py:1283 msgid "Item {0} has reached its end of life on {1}" msgstr "" -#: erpnext/stock/stock_ledger.py:164 +#: erpnext/stock/stock_ledger.py:168 msgid "Item {0} ignored since it is not a stock item" msgstr "" -#: erpnext/stock/get_item_details.py:357 +#: erpnext/stock/get_item_details.py:356 msgid "Item {0} is a template, please select one of its variants" msgstr "" @@ -28052,11 +28132,11 @@ msgstr "" msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1298 +#: erpnext/stock/doctype/item/item.py:1303 msgid "Item {0} is cancelled" msgstr "" -#: erpnext/stock/doctype/item/item.py:1282 +#: erpnext/stock/doctype/item/item.py:1287 msgid "Item {0} is disabled" msgstr "" @@ -28068,7 +28148,7 @@ msgstr "" msgid "Item {0} is not a serialized Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1290 +#: erpnext/stock/doctype/item/item.py:1295 msgid "Item {0} is not a stock Item" msgstr "" @@ -28076,11 +28156,11 @@ msgstr "" msgid "Item {0} is not a subcontracted item" msgstr "" -#: erpnext/stock/doctype/item/item.py:857 +#: erpnext/stock/doctype/item/item.py:862 msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1258 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1271 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -28088,7 +28168,7 @@ msgstr "" msgid "Item {0} must be a Fixed Asset Item" msgstr "" -#: erpnext/stock/get_item_details.py:363 +#: erpnext/stock/get_item_details.py:362 msgid "Item {0} must be a Non-Stock Item" msgstr "" @@ -28104,11 +28184,11 @@ msgstr "" msgid "Item {0} not found." msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:315 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:316 msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:573 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:600 msgid "Item {0}: {1} qty produced. " msgstr "" @@ -28154,7 +28234,7 @@ msgstr "" msgid "Item-wise sales Register" msgstr "" -#: erpnext/stock/get_item_details.py:767 +#: erpnext/stock/get_item_details.py:766 msgid "Item/Item Code required to get Item Tax Template." msgstr "" @@ -28182,16 +28262,11 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:218 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Items To Be Received" -msgstr "" - #. Label of a Link in the Buying Workspace #. Name of a report #. Label of a Workspace Sidebar Item @@ -28222,7 +28297,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:618 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:631 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -28232,7 +28307,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:217 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28345,7 +28420,7 @@ msgstr "" msgid "Job Card Secondary Item" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1032 +#: erpnext/public/js/shop_floor/shop_floor.js:1068 msgid "Job Card Submitted" msgstr "" @@ -28373,20 +28448,20 @@ msgstr "" msgid "Job Card {0} has been completed" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1435 +#: erpnext/public/js/shop_floor/shop_floor.js:1470 msgid "Job Card {0} is already running. Open its machine or work order to pause or complete it." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1430 -#: erpnext/public/js/shop_floor/shop_floor.js:1451 +#: erpnext/public/js/shop_floor/shop_floor.js:1465 +#: erpnext/public/js/shop_floor/shop_floor.js:1486 msgid "Job Card {0} is already submitted." msgstr "" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:186 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:188 msgid "Job Card {0} not found" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1426 +#: erpnext/public/js/shop_floor/shop_floor.js:1461 msgid "Job Card {0} was not found." msgstr "" @@ -28460,7 +28535,7 @@ msgstr "" msgid "Job card {0} created" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1039 +#: erpnext/public/js/shop_floor/shop_floor.js:1075 msgid "Job card {0} has been submitted." msgstr "" @@ -28472,7 +28547,7 @@ msgstr "" msgid "Job started" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1474 +#: erpnext/public/js/shop_floor/shop_floor.js:1509 msgid "Job {0} is running" msgstr "" @@ -28495,11 +28570,11 @@ msgstr "" msgid "Joule/Meter" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:30 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:31 msgid "Journal Entries" msgstr "" -#: erpnext/accounts/utils.py:1073 +#: erpnext/accounts/utils.py:1074 msgid "Journal Entries {0} are un-linked" msgstr "" @@ -28523,8 +28598,8 @@ msgstr "" #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html:10 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/assets/doctype/asset/asset.js:390 -#: erpnext/assets/doctype/asset/asset.js:399 +#: erpnext/assets/doctype/asset/asset.js:398 +#: erpnext/assets/doctype/asset/asset.js:407 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json @@ -28541,10 +28616,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Journal Entry Template" msgstr "" @@ -28558,7 +28631,7 @@ msgstr "" msgid "Journal Entry Type" msgstr "" -#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:190 +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:191 msgid "Journal Entry for Asset scrapping cannot be cancelled. Please restore the Asset." msgstr "" @@ -28579,7 +28652,7 @@ msgstr "" msgid "Journal Template Accounts" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:97 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:107 msgid "Journal entries have been created" msgstr "" @@ -28734,7 +28807,7 @@ msgstr "" msgid "Landed Cost Help" msgstr "" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:18 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:20 msgid "Landed Cost Id" msgstr "" @@ -28821,7 +28894,7 @@ msgstr "" msgid "Last Fiscal Year" msgstr "" -#: erpnext/accounts/doctype/account/account.py:673 +#: erpnext/accounts/doctype/account/account.py:680 msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" @@ -29075,7 +29148,7 @@ msgstr "" msgid "Leave Encashed?" msgstr "" -#: erpnext/stock/doctype/item/item.js:976 +#: erpnext/stock/doctype/item/item.js:997 msgid "Leave as 0 to allow zero valuation rate." msgstr "" @@ -29152,11 +29225,11 @@ msgstr "" msgid "Left Index" msgstr "" -#: erpnext/stock/doctype/item/item.js:398 +#: erpnext/stock/doctype/item/item.js:413 msgid "Left column shows inherited defaults (Item Group → Company / Stock Settings). Right column is where you set overrides for this item only." msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:136 +#: erpnext/setup/doctype/item_group/item_group.js:153 msgid "Left column shows system-level defaults (Company / Stock Settings). Right column is where you set overrides for this item group." msgstr "" @@ -29216,7 +29289,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:273 msgid "Liabilities" msgstr "" @@ -29303,11 +29376,11 @@ msgstr "" msgid "Link to Material Requests" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:164 +#: erpnext/buying/doctype/supplier/supplier.js:173 msgid "Link with Customer" msgstr "" -#: erpnext/selling/doctype/customer/customer.js:203 +#: erpnext/selling/doctype/customer/customer.js:212 msgid "Link with Supplier" msgstr "" @@ -29328,20 +29401,20 @@ msgstr "" msgid "Linked Location" msgstr "" -#: erpnext/stock/doctype/item/item.py:1132 +#: erpnext/stock/doctype/item/item.py:1137 msgid "Linked with submitted documents" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:251 -#: erpnext/selling/doctype/customer/customer.js:283 +#: erpnext/buying/doctype/supplier/supplier.js:260 +#: erpnext/selling/doctype/customer/customer.js:292 msgid "Linking Failed" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:250 +#: erpnext/buying/doctype/supplier/supplier.js:259 msgid "Linking to Customer Failed. Please try again." msgstr "" -#: erpnext/selling/doctype/customer/customer.js:282 +#: erpnext/selling/doctype/customer/customer.js:291 msgid "Linking to Supplier failed. Please try again." msgstr "" @@ -29374,7 +29447,7 @@ msgstr "" msgid "Loading Invoices! Please Wait..." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:900 +#: erpnext/public/js/shop_floor/shop_floor.js:936 msgid "Loading quality checklist..." msgstr "" @@ -29461,7 +29534,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:1051 +#: erpnext/public/js/templates/shop_floor_template.html:1071 msgid "Loss" msgstr "" @@ -29517,7 +29590,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:602 +#: erpnext/public/js/utils/sales_common.js:600 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29686,7 +29759,7 @@ msgstr "" #: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js:23 #: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:78 #: erpnext/public/js/plant_floor_visual/visual_plant.js:86 -#: erpnext/public/js/shop_floor/shop_floor.js:189 +#: erpnext/public/js/shop_floor/shop_floor.js:217 msgid "Machine" msgstr "" @@ -29704,10 +29777,10 @@ msgstr "" msgid "Machine operator errors" msgstr "" -#: erpnext/setup/doctype/company/company.py:789 -#: erpnext/setup/doctype/company/company.py:804 -#: erpnext/setup/doctype/company/company.py:805 +#: erpnext/setup/doctype/company/company.py:791 #: erpnext/setup/doctype/company/company.py:806 +#: erpnext/setup/doctype/company/company.py:807 +#: erpnext/setup/doctype/company/company.py:808 msgid "Main" msgstr "" @@ -29954,8 +30027,8 @@ msgstr "" #. Label of the make (Data) field in DocType 'Vehicle' #: erpnext/accounts/doctype/journal_entry/journal_entry.js:271 #: erpnext/manufacturing/doctype/job_card/job_card.js:479 -#: erpnext/manufacturing/doctype/work_order/work_order.js:860 -#: erpnext/manufacturing/doctype/work_order/work_order.js:894 +#: erpnext/manufacturing/doctype/work_order/work_order.js:864 +#: erpnext/manufacturing/doctype/work_order/work_order.js:898 #: erpnext/setup/doctype/vehicle/vehicle.json msgid "Make" msgstr "" @@ -29975,7 +30048,7 @@ msgstr "" msgid "Make Difference Entry" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1048 +#: erpnext/public/js/shop_floor/shop_floor.js:1084 msgid "Make Manufacture Entry" msgstr "" @@ -30014,7 +30087,7 @@ msgid "Make Serial No / Batch from Work Order" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:106 -#: erpnext/public/js/templates/shop_floor_template.html:926 +#: erpnext/public/js/templates/shop_floor_template.html:946 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256 msgid "Make Stock Entry" msgstr "" @@ -30031,11 +30104,11 @@ msgstr "" msgid "Make project from a template." msgstr "" -#: erpnext/stock/doctype/item/item.js:1212 +#: erpnext/stock/doctype/item/item.js:1233 msgid "Make {0} Variant" msgstr "" -#: erpnext/stock/doctype/item/item.js:1213 +#: erpnext/stock/doctype/item/item.js:1234 msgid "Make {0} Variants" msgstr "" @@ -30058,7 +30131,7 @@ msgstr "" msgid "Manage your orders" msgstr "" -#: erpnext/setup/doctype/company/company.py:567 +#: erpnext/setup/doctype/company/company.py:569 msgid "Management" msgstr "" @@ -30173,8 +30246,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:721 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:738 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:734 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:751 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30395,7 +30468,7 @@ msgstr "" msgid "Manufacturing Variance Account" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:67 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:72 msgid "Manufacturing Variance for {0}" msgstr "" @@ -30407,7 +30480,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1075 +#: erpnext/public/js/utils.js:1087 msgid "Mapping {0} ..." msgstr "" @@ -30418,13 +30491,6 @@ msgstr "" msgid "Maps To" msgstr "" -#. Label of the margin (Section Break) field in DocType 'Pricing Rule' -#. Label of the margin (Section Break) field in DocType 'Project' -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/projects/doctype/project/project.json -msgid "Margin" -msgstr "" - #. Label of the margin_money (Currency) field in DocType 'Bank Guarantee' #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json msgid "Margin Money" @@ -30486,7 +30552,7 @@ msgstr "" msgid "Margin Type" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:33 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 msgid "Margin View" msgstr "" @@ -30520,7 +30586,7 @@ msgstr "" msgid "Market Segment" msgstr "" -#: erpnext/setup/doctype/company/company.py:519 +#: erpnext/setup/doctype/company/company.py:521 msgid "Marketing" msgstr "" @@ -30603,7 +30669,7 @@ msgstr "" msgid "Material" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:885 +#: erpnext/manufacturing/doctype/work_order/work_order.js:889 msgid "Material Consumption" msgstr "" @@ -30611,12 +30677,12 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:722 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:735 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:688 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:687 msgid "Material Consumption is not set in Manufacturing Settings." msgstr "" @@ -30646,7 +30712,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:77 -#: erpnext/stock/doctype/material_request/material_request.js:188 +#: erpnext/stock/doctype/material_request/material_request.js:191 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Receipt" @@ -30693,26 +30759,27 @@ msgstr "" #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:186 #: erpnext/buying/workspace/buying/buying.json #: erpnext/manufacturing/doctype/job_card/job_card.js:216 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:185 #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:825 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/selling/doctype/sales_order/sales_order.js:1130 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:37 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:437 -#: erpnext/stock/doctype/material_request/material_request.py:454 +#: erpnext/stock/doctype/material_request/material_request.py:476 +#: erpnext/stock/doctype/material_request/material_request.py:493 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:309 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:465 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:308 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:464 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:153 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:135 #: erpnext/stock/workspace/stock/stock.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json @@ -30798,7 +30865,7 @@ msgstr "" msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:149 +#: erpnext/stock/doctype/material_request/material_request.py:150 msgid "Material Request of maximum {0} can be made for Item {1} against Sales Order {2}" msgstr "" @@ -30866,7 +30933,7 @@ msgstr "" #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json #: erpnext/setup/setup_wizard/operations/install_fixtures.py:83 #: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/material_request/material_request.js:166 +#: erpnext/stock/doctype/material_request/material_request.js:169 #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -30874,7 +30941,7 @@ msgstr "" msgid "Material Transfer" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:172 +#: erpnext/stock/doctype/material_request/material_request.js:175 msgid "Material Transfer (In Transit)" msgstr "" @@ -30923,19 +30990,14 @@ msgstr "" msgid "Material to Supplier" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:788 +#: erpnext/public/js/templates/shop_floor_template.html:808 msgid "Materials" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:966 +#: erpnext/public/js/templates/shop_floor_template.html:986 msgid "Materials Ready" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Materials To Be Transferred" -msgstr "" - #: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" @@ -31008,15 +31070,15 @@ msgstr "" msgid "Max Score" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:292 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:310 msgid "Max discount allowed for item: {0} is {1}%" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1061 -#: erpnext/manufacturing/doctype/work_order/work_order.js:1068 -#: erpnext/manufacturing/doctype/work_order/work_order.js:1091 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1065 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1072 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1095 #: erpnext/stock/doctype/pick_list/pick_list.js:208 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:404 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:403 msgid "Max: {0}" msgstr "" @@ -31077,7 +31139,7 @@ msgstr "" msgid "Maximum discount for Item {0} is {1}%" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:120 +#: erpnext/public/js/utils/barcode_scanner.js:125 msgid "Maximum quantity scanned for item {0}." msgstr "" @@ -31086,7 +31148,7 @@ msgstr "" msgid "Maximum sample quantity that can be retained" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:939 +#: erpnext/public/js/shop_floor/shop_floor.js:975 msgid "Measured value" msgstr "" @@ -31115,7 +31177,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2158 +#: erpnext/stock/stock_ledger.py:2206 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -31150,7 +31212,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1107 +#: erpnext/public/js/utils.js:1119 msgid "Merge taxes from multiple documents" msgstr "" @@ -31357,7 +31419,7 @@ msgstr "" msgid "Min Amt" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:228 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:246 msgid "Min Amt can not be greater than Max Amt" msgstr "" @@ -31390,15 +31452,15 @@ msgstr "" msgid "Min Qty (As Per Stock UOM)" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:224 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:242 msgid "Min Qty can not be greater than Max Qty" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:238 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:256 msgid "Min Qty should be greater than Recurse Over Qty" msgstr "" -#: erpnext/stock/doctype/item/item.js:1368 +#: erpnext/stock/doctype/item/item.js:1389 msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}" msgstr "" @@ -31492,7 +31554,7 @@ msgstr "" msgid "Miscellaneous Expenses" msgstr "" -#: erpnext/controllers/buying_controller.py:729 +#: erpnext/controllers/buying_controller.py:737 msgid "Mismatch" msgstr "" @@ -31538,7 +31600,7 @@ msgstr "" msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:897 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 msgid "Missing Finished Good" msgstr "" @@ -31554,7 +31616,7 @@ msgstr "" msgid "Missing Parameter" msgstr "" -#: erpnext/utilities/__init__.py:57 +#: erpnext/utilities/__init__.py:84 msgid "Missing Payments App" msgstr "" @@ -31562,7 +31624,7 @@ msgstr "" msgid "Missing Required Filter" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:297 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:300 msgid "Missing Serial No Bundle" msgstr "" @@ -31583,7 +31645,7 @@ msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:920 -#: erpnext/manufacturing/doctype/work_order/work_order.py:930 +#: erpnext/manufacturing/doctype/work_order/work_order.py:936 msgid "Missing value" msgstr "" @@ -31623,7 +31685,6 @@ msgstr "" #. Label of the mode_of_payment (Link) field in DocType 'Purchase Invoice' #. Label of the mode_of_payment (Link) field in DocType 'Sales Invoice Payment' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:234 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:433 #: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json @@ -31650,7 +31711,6 @@ msgstr "" #: erpnext/accounts/report/sales_register/sales_register.js:40 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/selling/page/point_of_sale/pos_controller.js:33 -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Mode of Payment" msgstr "" @@ -31785,7 +31845,7 @@ msgstr "" msgid "Move Stock" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1373 +#: erpnext/public/js/shop_floor/shop_floor.js:1408 msgid "Move selection" msgstr "" @@ -31836,7 +31896,7 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:443 +#: erpnext/selling/doctype/customer/customer.py:460 msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" @@ -31854,7 +31914,7 @@ msgstr "" msgid "Multiple Tier Program" msgstr "" -#: erpnext/stock/doctype/item/item.js:259 +#: erpnext/stock/doctype/item/item.js:274 msgid "Multiple Variants" msgstr "" @@ -31866,7 +31926,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:904 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:917 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31875,7 +31935,7 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:877 +#: erpnext/manufacturing/doctype/work_order/work_order.py:883 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 #: erpnext/utilities/transaction_base.py:627 @@ -31945,7 +32005,7 @@ msgstr "" msgid "Naming Series Prefix" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:95 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:96 msgid "Naming Series is mandatory" msgstr "" @@ -32017,8 +32077,8 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1656 -#: erpnext/stock/serial_batch_bundle.py:1588 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1657 +#: erpnext/stock/serial_batch_bundle.py:1594 msgid "Negative Stock Error" msgstr "" @@ -32105,40 +32165,40 @@ msgstr "" msgid "Net Asset value as on" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:186 +#: erpnext/accounts/report/cash_flow/cash_flow.py:202 msgid "Net Cash from Financing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:179 +#: erpnext/accounts/report/cash_flow/cash_flow.py:195 msgid "Net Cash from Investing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:167 +#: erpnext/accounts/report/cash_flow/cash_flow.py:183 msgid "Net Cash from Operations" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:172 +#: erpnext/accounts/report/cash_flow/cash_flow.py:188 msgid "Net Change in Accounts Payable" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:171 +#: erpnext/accounts/report/cash_flow/cash_flow.py:187 msgid "Net Change in Accounts Receivable" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:138 -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:257 +#: erpnext/accounts/report/cash_flow/cash_flow.py:146 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:265 msgid "Net Change in Cash" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:188 +#: erpnext/accounts/report/cash_flow/cash_flow.py:204 msgid "Net Change in Equity" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:181 +#: erpnext/accounts/report/cash_flow/cash_flow.py:197 msgid "Net Change in Fixed Asset" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:173 +#: erpnext/accounts/report/cash_flow/cash_flow.py:189 msgid "Net Change in Inventory" msgstr "" @@ -32151,7 +32211,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:135 msgid "Net Profit" msgstr "" @@ -32159,7 +32219,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:208 msgid "Net Profit/Loss" msgstr "" @@ -32343,10 +32403,6 @@ msgstr "" msgid "New Asset Value" msgstr "" -#: erpnext/assets/dashboard_fixtures.py:169 -msgid "New Assets (This Year)" -msgstr "" - #. Label of the new_bom (Link) field in DocType 'BOM Update Log' #. Label of the new_bom (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom/bom_tree.js:62 @@ -32465,6 +32521,12 @@ msgstr "" msgid "New Sales Invoice" msgstr "" +#. Description of the 'Overdue Billing Threshold' (Currency) field in DocType +#. 'Customer Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "New Sales Invoices are blocked when the customer's overdue amount exceeds this. Requires 'Enable Overdue Billing Threshold' in Accounts Settings." +msgstr "" + #. Label of the sales_order (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid "New Sales Orders" @@ -32497,7 +32559,7 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:408 +#: erpnext/selling/doctype/customer/customer.py:425 msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" @@ -32584,7 +32646,7 @@ msgstr "" msgid "No Answer" msgstr "" -#: erpnext/stock/doctype/item/item.js:920 +#: erpnext/stock/doctype/item/item.js:941 msgid "No Company Found" msgstr "" @@ -32592,7 +32654,7 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:435 msgid "No Customers found with selected options." msgstr "" @@ -32608,11 +32670,11 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:338 +#: erpnext/stock/get_item_details.py:337 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:342 +#: erpnext/stock/get_item_details.py:341 msgid "No Item with Serial No {0}" msgstr "" @@ -32651,7 +32713,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1124 #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1200 #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1221 -#: erpnext/stock/doctype/item/item.py:1525 +#: erpnext/stock/doctype/item/item.py:1530 msgid "No Permission" msgstr "" @@ -32659,11 +32721,11 @@ msgstr "" msgid "No Purchase Invoices selected" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:102 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:116 msgid "No Purchase Orders were created" msgstr "" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:242 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:244 msgid "No Quality Inspection Template is configured for this operation." msgstr "" @@ -32675,7 +32737,7 @@ msgstr "" msgid "No Serial / Batches are available for return" msgstr "" -#: erpnext/stock/stock_ledger.py:928 +#: erpnext/stock/stock_ledger.py:976 msgid "No Standard Valuation Rate found for Item {0} in Company {1} as on {2}. Please create an Item Standard Cost record." msgstr "" @@ -32703,7 +32765,7 @@ msgstr "" msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}." msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:1005 +#: erpnext/accounts/report/gross_profit/gross_profit.py:1007 msgid "No Terms" msgstr "" @@ -32715,7 +32777,7 @@ msgstr "" msgid "No Unreconciled Payments found for this party" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:100 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:114 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:250 msgid "No Work Orders were created" msgstr "" @@ -32724,7 +32786,7 @@ msgstr "" msgid "No account set" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:356 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:365 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:211 msgid "No accounting entries for the following warehouses" msgstr "" @@ -32745,7 +32807,7 @@ msgstr "" msgid "No active item prices found." msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:849 +#: erpnext/public/js/templates/shop_floor_template.html:869 msgid "No active jobs and the queue is empty." msgstr "" @@ -32753,7 +32815,7 @@ msgstr "" msgid "No additional fields available" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1381 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1391 msgid "No available quantity to reserve for item {0} in warehouse {1}" msgstr "" @@ -32769,7 +32831,7 @@ msgstr "" msgid "No bank transactions found" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:502 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:501 msgid "No billing email found for customer: {0}" msgstr "" @@ -32793,7 +32855,7 @@ msgstr "" msgid "No data found. Seems like you uploaded a blank file" msgstr "" -#: erpnext/stock/doctype/item/item.js:950 +#: erpnext/stock/doctype/item/item.js:971 msgid "No default warehouse set for this company. Entry will use Stock Settings default." msgstr "" @@ -32834,12 +32896,12 @@ msgstr "" msgid "No item available for transfer." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:174 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:197 msgid "No items are available in sales orders {0} for production" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:171 -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:183 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:194 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:206 msgid "No items are available in the sales order {0} for production" msgstr "" @@ -32855,7 +32917,7 @@ msgstr "" msgid "No matches occurred via auto reconciliation" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:126 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:133 msgid "No material request created" msgstr "" @@ -32955,7 +33017,7 @@ msgstr "" msgid "No open task" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:335 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:360 msgid "No outstanding invoices found" msgstr "" @@ -32963,7 +33025,7 @@ msgstr "" msgid "No outstanding invoices found for the selected vouchers in account {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:333 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:358 msgid "No outstanding invoices require exchange rate revaluation" msgstr "" @@ -32979,7 +33041,7 @@ msgstr "" msgid "No pending Material Requests found to link for the given items." msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:509 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:508 msgid "No primary email found for customer: {0}" msgstr "" @@ -33010,15 +33072,15 @@ msgstr "" msgid "No records for these settings." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:776 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:656 msgid "No records found in the Payments table" msgstr "" @@ -33084,11 +33146,11 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1782 +#: erpnext/stock/doctype/item/item.py:1787 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:301 +#: erpnext/public/js/shop_floor/shop_floor.js:329 msgid "No work orders here." msgstr "" @@ -33233,7 +33295,14 @@ msgstr "" msgid "Not Started" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:431 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:269 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/report/cash_flow/cash_flow.py:161 +msgid "Not Supported" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:479 msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" @@ -33273,7 +33342,7 @@ msgstr "" msgid "Note: Automatic log deletion only applies to logs of type Update Cost" msgstr "" -#: erpnext/accounts/party.py:714 +#: erpnext/accounts/party.py:730 msgid "Note: Due Date exceeds allowed {0} credit days by {1} day(s)" msgstr "" @@ -33291,7 +33360,7 @@ msgstr "" msgid "Note: Item {0} added multiple times" msgstr "" -#: erpnext/controllers/accounts_controller.py:622 +#: erpnext/controllers/accounts_controller.py:549 msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified" msgstr "" @@ -33299,7 +33368,7 @@ msgstr "" msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups." msgstr "" -#: erpnext/stock/doctype/item/item.py:686 +#: erpnext/stock/doctype/item/item.py:691 msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}" msgstr "" @@ -33654,10 +33723,16 @@ msgstr "" msgid "On enabling this cancellation entries will be posted on the actual cancellation date and reports will consider cancelled entries as well" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:727 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:754 msgid "On expanding a row in the Items to Manufacture table, you'll see an option to 'Include Exploded Items'. Ticking this includes raw materials of the sub-assembly items in the production process." msgstr "" +#. Option for the 'Status' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project/project_list.js:8 +msgid "On hold" +msgstr "" + #. Description of the 'Excluded Fee' (Currency) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -33798,7 +33873,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:737 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:750 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33812,7 +33887,7 @@ msgstr "" msgid "Only show Items from these Item Groups" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:152 +#: erpnext/public/js/shop_floor/shop_floor.js:178 msgid "Only show work orders that have job cards" msgstr "" @@ -33955,7 +34030,7 @@ msgstr "" msgid "Open the settings dialog" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1374 +#: erpnext/public/js/shop_floor/shop_floor.js:1409 msgid "Open work order / run primary action" msgstr "" @@ -33969,9 +34044,7 @@ msgid "Opening" msgstr "" #. Group in POS Profile's connections -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_profile/pos_profile.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Opening & Closing" msgstr "" @@ -34055,7 +34128,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:326 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -34078,11 +34151,6 @@ msgstr "" msgid "Opening Invoice Item" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "Opening Invoice Tool" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:849 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:644 msgid "Opening Invoice has rounding adjustment of {0}.Message Example
\n\n" "
Spoji grupu artikala u drugi artikal. Ovo je korisno ako spajate određene Artikle u paket i održavate zalihe upakiranih artikala, a ne zbirni artikal.
\n" "Paketni Artikal će imati artikle na zalihi kao Ne i Prodajni Artikal kao Da .
Ako prodajete prijenosna računala i ruksake odvojeno i imate posebnu cijenu ako Klijent kupi oboje, tada će prijenosno računalo + ruksak biti novi artikal paketa proizvoda.
" +"Ako prodajete prijenosna računala i ruksake odvojeno i imate posebnu cjenu ako Klijent kupi oboje, tada će prijenosno računalo + ruksak biti novi artikal paketa proizvoda.
" #. Content of the 'Help' (HTML) field in DocType 'Currency Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json @@ -753,11 +753,11 @@ msgid "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
" msgstr "Nazivi polja koje možete koristiti u svom šablonu su polja u dokumentu. Možete saznati polja bilo kojeg dokumenta putem Podešavanja > Prilagodite prikaz obrasca i odabir tipa dokumenta (npr. Prodajna Faktura)
\n\n" -"Šabloni se kompajliraju koristeći Jinja Templating Language. Da saznate više o Jinji, pročitajte ovu dokumentaciju.
" +"Nazivi polja koje možete koristiti u svom predlošku su polja u dokumentu. Možete saznati polja bilo kojeg dokumenta putem Podešavanja > Prilagodi prikaz obrasca i odabir tipa dokumenta (npr. Prodajna Faktura)
\n\n" +"Predložci se kompajliraju koristeći Jinja Templating Language. Da saznate više o Jinji, pročitajte ovu dokumentaciju.
" #. Content of the 'Contract Template Help' (HTML) field in DocType 'Contract #. Template' @@ -771,15 +771,15 @@ msgid "The field names you can use in your Contract Template are the fields in the Contract for which you are creating the template. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Contract)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
" -msgstr "Ugovor za Kupca {{ party_name }}\n\n"
+msgstr "Primjer Predloška Ugovora
\n\n"
+"Ugovor za Klijenta {{ party_name }}\n\n"
"-Važi od: {{ start_date }}\n"
"-Važi do: {{ end_date }}\n"
"\n\n"
"Kako dobiti imena polja
\n\n"
-"Nazivi polja koje možete koristiti u svom predlošku ugovora su polja u ugovoru za koje kreirate šablon. Možete saznati polja bilo kojeg dokumenta putem Podešavanja > Prilagodite prikaz obrasca i odabir vrste dokumenta (npr. Ugovor)
\n\n"
-"Šablon
\n\n"
-"Šabloni se kompajliraju koristeći Jinja Templating Language. Da saznate više o Jinji, pročitajte ovu dokumentaciju.
"
+"Nazivi polja koje možete koristiti u svom predlošku ugovora su polja u ugovoru za koje izradi predložak. Možete saznati polja bilo kojeg dokumenta putem Podešavanja > Prilagodi prikaz obrasca i odabir vrste dokumenta (npr. Ugovor)
\n\n"
+"Predložak
\n\n"
+"Predložci se kompajliraju koristeći Jinja Templating Language. Da saznate više o Jinji, pročitajte ovu dokumentaciju.
"
#. Content of the 'Terms and Conditions Help' (HTML) field in DocType 'Terms
#. and Conditions'
@@ -793,15 +793,15 @@ msgid "Standard Terms and Conditions Example
\n\n"
"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
"Templating
\n\n"
"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
"
-msgstr "Primjer Standardnih Odredbi i Uvjeta
\n\n"
-"Uvjeti dostaveza broj Naloga {{ name }}\n\n"
+msgstr "Primjer Standardnih Odredbi i Uslova
\n\n"
+"Uslovi dostave za broj Naloga {{ name }}\n\n"
"- Datum Naloga: {{ transaction_date }}\n"
"- Očekivani Datum Dostave: {{ delivery_date }}\n"
"\n\n"
"Kako preuzeti nazive polja
\n\n"
-"Imena polja koja možete koristiti u svom šablonu e-pošte su polja u dokumentu iz kojeg šaljete e-poštu. Polja bilo kojeg dokumenta možete pronaći preko Postavljanje > Prilagodite prikaz forme i odaberite tip dokumenta (npr. Prodajna Faktura)
\n\n"
-"Izrada Šablona
\n\n"
-"Šabloni su sastavljeni pomoću Jinja Templating Language. Da biste saznali više o Jinji, pročitajte ovu dokumentaciju.
"
+"Imena polja koja možete koristiti u predlošku e-pošte su polja u dokumentu iz kojeg šaljete e-poštu. Polja bilo kojeg dokumenta možete pronaći preko Postavljanje > Prilagodi prikaz obrasca i odaberi tip dokumenta (npr. Prodajna Faktura)
\n\n"
+"Izrada Predloška
\n\n"
+"Predlošci su sastavljeni pomoću Jinja Templating Language. Da biste saznali više o Jinji, pročitajte ovu dokumentaciju.
"
#. Content of the 'account_no_settings' (HTML) field in DocType 'Cheque Print
#. Template'
@@ -871,7 +871,7 @@ msgid "In your Email Template, you can use the following special varia
" \n"
"
\n"
"Apart from these, you can access all values in this RFQ, like {{ message_for_supplier }} or {{ terms }}.
"
-msgstr "U vašem Šablonu e-pošte možete koristiti sljedeće posebne varijable:\n"
+msgstr "
U vašem Predložku e-pošte možete koristiti sljedeće posebne varijable:\n"
"
\n"
"U vašem Šablonu e-pošte možete koristiti sljedeće posebne #: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:119 msgid "
Please correct the following row(s):
Molimo ispravite sljedeći red(ove):
Ispravi sljedeći red(ove):
Posting Date {0} cannot be before Purchase Order date for the following:
Datum registracije {0} ne može biti prije datuma Nabavnog Naloga za sljedeće:
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?" -msgstr "Cijena Cjenovnika nije postavljena za uređivanje u Postavkama Prodaje. U ovom scenariju, postavljanje Ažuriraj Cjenovnik na Osnovuna Cijena Cjenovnika spriječit će automatsko ažuriranje cijene artikla.
Jeste li sigurni da želite nastaviti?" +msgstr "Cjena Cjenovnika nije postavljena za uređivanje u Postavkama Prodaje. U ovom scenariju, postavljanje Ažuriraj Cjenovnik na Osnovuna Cjena Cjenovnika spriječit će automatsko ažuriranje cjene artikla.
Jeste li sigurni da želite nastaviti?" #: erpnext/accounts/services/billing_validation.py:150 msgid "To allow over-billing, please set allowance in Accounts Settings.
" -msgstr "Da biste dozvolili prekomjerno fakturisanje, postavite dozvoljeni iznos u Postavkama Knjigovodstva.
" +msgstr "Da biste dozvolili prekomjerno fakturisanje, postavi dozvoljeni iznos u Postavkama Knjigovodstva.
" #. Content of the 'Message Examples' (HTML) field in DocType 'Payment Gateway #. Account' @@ -917,7 +917,7 @@ msgid "\n" -msgstr "Message Example
\n\n" "<p> We don't want you to be spending time running around in order to pay for your Bill.
After all, life is beautiful and the time you have in hand should be spent to enjoy it!
So here are our little ways to help you get more time for life! </p>\n\n" "<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" "
Primjer poruke
\n\n" +msgstr "Primjer Poruke
\n\n" "<p> Hvala vam što ste dio {{ doc.company }}! Nadamo se da uživate u usluzi.</p>\n\n" "<p> U prilogu se nalazi izvod E računa. Nepodmireni iznos je {{ doc.grand_total }}.</p>\n\n" "<p> Ne želimo da trošite vrijeme na trčanje okolo kako biste platili svoj račun.
Uostalom, život je lijep i vrijeme koje imate u ruci treba potrošiti da uživate u njemu!
Dakle, evo naših malih načina da vam pomognemo da dobijete više vremena za život! </p>\n\n" @@ -931,12 +931,17 @@ msgid "\n" -msgstr "Message Example
\n\n" "<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n" "<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" "Primjer poruke
\n\n" +msgstr "\n" +#. Header text in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounting Overview" +msgstr "" + #. Header text in the Stock Workspace #: erpnext/stock/workspace/stock/stock.json msgid "Masters & Reports" @@ -965,11 +970,6 @@ msgstr "Postavke & Izvještaji" msgid "Reports & Masters" msgstr "Izvještaji & Pristup" -#. Header text in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Inward and Outward" -msgstr "Unutrašnji i Vanjski Podugovori" - #. Header text in the ERPNext Settings Workspace #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json msgid "Your Shortcuts\n" @@ -990,11 +990,11 @@ msgstr "Prečice" msgid "Your Shortcuts" msgstr "Prečice" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1300 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 msgid "Grand Total: {0}" msgstr "Ukupno: {0}" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1302 msgid "Outstanding Amount: {0}" msgstr "Nepodmireni iznos: {0}" @@ -1064,7 +1064,7 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:358 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "Grupa Klijenta postoji sa istim imenom, preimenujte klijenta ili preimenujte Grupu Klijenta" @@ -1078,23 +1078,23 @@ msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime poduzeća" #: erpnext/stock/doctype/packing_slip/packing_slip.py:83 msgid "A Packing Slip can only be created for a Draft Delivery Note." -msgstr "Nalog Pakovanja se može kreirati samo za nacrt Dostavnice." +msgstr "Nalog Pakovanja se može izraditi samo za nacrt Dostavnice." #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." -msgstr "Verifikat Zatvaranje Perioda je već podnesen i početni unos se više ne može kreirati. {0} za više informacija." +msgstr "Verifikat Zatvaranje Perioda je već podnesen i početni unos se više ne može izraditi. {0} za više informacija." #. Description of a DocType #: erpnext/stock/doctype/price_list/price_list.json msgid "A Price List is a collection of Item Prices either Selling, Buying, or both" -msgstr "Cjenovnik je skup cijena artikala za Prodaju, Kupovinu ili oboje" +msgstr "Cjenovnik je skup cjena artikala za Prodaju, Nabavu ili oboje" #. Description of a DocType #: erpnext/stock/doctype/item/item.json msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Proizvod ili Usluga koja se kupuje, prodaje ili drži na zalihama." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:603 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Posao usaglašavanja {0} radi za iste filtere. Ne mogu se sada usglasiti" @@ -1135,17 +1135,17 @@ msgstr "Malo o vama" msgid "A logical Warehouse against which stock entries are made." msgstr "Logičko skladište naspram kojeg se vrše knjiženja zaliha." -#: erpnext/stock/serial_batch_bundle.py:1519 +#: erpnext/stock/serial_batch_bundle.py:1525 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." -msgstr "Došlo je do konflikta imenovanja serije prilikom kreiranja serijskih brojeva. Molimo vas da promijenite imenovanje serije za artikal {0}." +msgstr "Došlo je do konflikta imenovanja serije prilikom izrade serijskih brojeva. Molimo vas da promijenite imenovanje serije za artikal {0}." #: erpnext/templates/emails/confirm_appointment.html:2 msgid "A new appointment has been created for you with {0}" -msgstr "Za vas je kreiran novi termin sa {0}" +msgstr "Za vas je izrađen novi termin sa {0}" #: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:3 msgid "A new fiscal year has been automatically created." -msgstr "Nova fiskalna godina je automatski kreirana." +msgstr "Nova fiskalna godina je automatski izrađena." #. Description of the 'Inspection Required before Delivery' (Check) field in #. DocType 'Item' @@ -1161,7 +1161,7 @@ msgstr "Kontrola Kvaliteta mora biti izvršena prije izdavanja Nabavnog Računa #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:99 msgid "A template with tax category {0} already exists. Only one template is allowed with each tax category" -msgstr "Šablon sa poreskom kategorijom {0} već postoji. Za svaku poreznu kategoriju dozvoljen je samo jedan šablon" +msgstr "Predložak sa poreskom kategorijom {0} već postoji. Za svaku poreznu kategoriju dozvoljen je samo jedan predložak" #. Description of a DocType #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -1245,19 +1245,19 @@ msgstr "Skr" msgid "Abbreviation" msgstr "Skraćenica" -#: erpnext/setup/doctype/company/company.py:310 +#: erpnext/setup/doctype/company/company.py:312 msgid "Abbreviation already used for another company" msgstr "Skraćenica se već koristi za drugo poduzeće" -#: erpnext/setup/doctype/company/company.py:307 +#: erpnext/setup/doctype/company/company.py:309 msgid "Abbreviation is mandatory" msgstr "Skraćenica je obavezna" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:112 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:114 msgid "Abbreviation: {0} must appear only once" msgstr "Skraćenica: {0} se mora pojaviti samo jednom" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1291 msgid "Above" msgstr "Iznad" @@ -1279,7 +1279,7 @@ msgstr "Prihvati Pravilo Usklađivanja" msgid "Accept the rule for the selected transaction" msgstr "Prihvati pravilo za odabranu transakciju" -#: erpnext/public/js/shop_floor/shop_floor.js:934 +#: erpnext/public/js/shop_floor/shop_floor.js:970 msgid "Acceptable range: {0} to {1}" msgstr "Prihvatljiv raspon: {0} do {1}" @@ -1371,11 +1371,9 @@ msgstr "Stanje Računa" #. Label of the account_category (Link) field in DocType 'Account' #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/account_tree.js:162 #: erpnext/accounts/doctype/account_category/account_category.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Account Category" msgstr "Kategorija Računa" @@ -1441,10 +1439,10 @@ msgstr "Valuta Računa (Do)" msgid "Account Data" msgstr "Podaci Računa" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 -#: erpnext/accounts/report/cash_flow/cash_flow.js:29 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:27 +#: erpnext/accounts/report/cash_flow/cash_flow.js:36 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:27 msgid "Account Detail Level" msgstr "Nivo Detalja Računa" @@ -1478,8 +1476,8 @@ msgstr "Račun" msgid "Account Manager" msgstr "Upravitelj Knjogovodstva" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 -#: erpnext/controllers/accounts_controller.py:1307 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:760 +#: erpnext/controllers/accounts_controller.py:1234 msgid "Account Missing" msgstr "Račun Nedostaje" @@ -1492,7 +1490,7 @@ msgstr "Račun Nedostaje" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:399 -#: erpnext/accounts/report/financial_statements.py:705 +#: erpnext/accounts/report/financial_statements.py:891 #: erpnext/accounts/report/trial_balance/trial_balance.py:498 msgid "Account Name" msgstr "Naziv Računa" @@ -1505,7 +1503,7 @@ msgstr "Račun nije pronađen" #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/account_tree.js:128 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:406 -#: erpnext/accounts/report/financial_statements.py:712 +#: erpnext/accounts/report/financial_statements.py:898 #: erpnext/accounts/report/trial_balance/trial_balance.py:505 msgid "Account Number" msgstr "Broj Računa" @@ -1571,7 +1569,7 @@ msgstr "Stanje na računu je već u Kreditu, nije vam dozvoljeno postaviti 'Stan #: erpnext/accounts/doctype/account/account.py:326 msgid "Account balance already in Debit, you are not allowed to set 'Balance Must Be' as 'Credit'" -msgstr "Stanje na računu je već u Debitu, nije vam dozvoljeno da postavite 'Stanje mora biti' kao 'Kredit'" +msgstr "Stanje na računu je već u Debitu, nije vam dozvoljeno da postavi 'Stanje mora biti' kao 'Kredit'" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:148 #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:154 @@ -1618,6 +1616,12 @@ msgstr "Račun nije pronađen" msgid "Account to record additional purchase expenses like freight or customs" msgstr "Račun za evidentiranje dodatnih troškova nabave poput prijevoza ili carine" +#. Description of the 'Expenses Added To Stock Account' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account to track value added to stock via Stock Entry, Stock Reconciliation or Landed Cost Voucher" +msgstr "" + #. Description of the 'COGS Account' (Link) field in DocType 'Item Default' #: erpnext/stock/doctype/item_default/item_default.json msgid "Account where cost of goods sold will be posted when this item is sold" @@ -1670,7 +1674,7 @@ msgstr "Račun {0} ne može biti onemogućen jer je već postavljen kao {1} za { msgid "Account {0} does not belong to company {1}" msgstr "Račun {0} ne pripada {1}" -#: erpnext/setup/doctype/company/company.py:358 +#: erpnext/setup/doctype/company/company.py:360 msgid "Account {0} does not belong to company: {1}" msgstr "Račun {0} ne pripada: {1}" @@ -1698,13 +1702,13 @@ msgstr "Račun {0} postoji u matičnom poduzeću {1}." msgid "Account {0} is added in the child company {1}" msgstr "Račun {0} je dodan u podređeno poduzeće {1}" -#: erpnext/setup/doctype/company/company.py:347 +#: erpnext/setup/doctype/company/company.py:349 msgid "Account {0} is disabled." msgstr "Račun {0} je onemogućen." #: erpnext/accounts/doctype/gl_entry/gl_entry.py:435 msgid "Account {0} is frozen" -msgstr "Račun {0} je zamrznut" +msgstr "Račun {0} je zatvoren" #: erpnext/accounts/services/base_gl_composer.py:213 msgid "Account {0} is invalid. Account Currency must be {1}" @@ -1738,7 +1742,7 @@ msgstr "Račun: {0} je Kapitalni Rad u toku i ne može se ažurirati Nalo msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Račun: {0} se može ažurirati samo putem Transakcija Zaliha" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Račun: {0} nije dozvoljen pod Unos plaćanja" @@ -1748,7 +1752,7 @@ msgstr "Račun: {0} sa valutom: {1} se ne može odabrati" #: erpnext/setup/setup_wizard/data/designation.txt:1 msgid "Accountant" -msgstr "Računovođa" +msgstr "Knjigovođa" #. Group in Bank Account's connections #. Label of the accounting_tab (Tab Break) field in DocType 'POS Profile' @@ -1756,6 +1760,7 @@ msgstr "Računovođa" #. Item' #. Label of the section_break_10 (Section Break) field in DocType 'Shipping #. Rule' +#. Name of a Workspace #. Label of the accounting_tab (Tab Break) field in DocType 'Supplier' #. Label of a Desktop Icon #. Label of the accounting_tab (Tab Break) field in DocType 'Customer' @@ -1767,6 +1772,7 @@ msgstr "Računovođa" #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/desktop_icon/accounting.json erpnext/public/js/setup_wizard.js:91 #: erpnext/selling/doctype/customer/customer.json @@ -1825,15 +1831,12 @@ msgstr "Knjigovodstveni Detalji" #. Label of a Link in the Invoicing Workspace #. Label of the accounting_dimensions_section (Section Break) field in DocType #. 'Asset Repair' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json #: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json #: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json #: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:32 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/workspace_sidebar/accounts_setup.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Accounting Dimension" msgstr "Knjigovodstvena Dimenzija" @@ -2027,8 +2030,8 @@ msgstr "Knjigovodstveni Unosi" msgid "Accounting Entry for Asset" msgstr "Knjigovodstveni Unos za Imovinu" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:298 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:316 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:303 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:321 msgid "Accounting Entry for LCV in Stock Entry {0}" msgstr "Knjigovodstveni Unos za Dokument Troškova Nabavke u Unosu Zaliha {0}" @@ -2049,17 +2052,17 @@ msgstr "Knjigovodstveni Unos za Servis" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:430 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:675 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:696 -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:430 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:234 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:249 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:263 -#: erpnext/stock/services/base_stock_gl_composer.py:65 -#: erpnext/stock/services/base_stock_gl_composer.py:80 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:439 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:239 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:254 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:268 +#: erpnext/stock/services/base_stock_gl_composer.py:72 +#: erpnext/stock/services/base_stock_gl_composer.py:87 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:67 msgid "Accounting Entry for Stock" msgstr "Knjigovodstveni Unos za Zalihe" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:268 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:276 msgid "Accounting Entry for {0}" msgstr "Knjigovodstveni Unos za {0}" @@ -2068,12 +2071,12 @@ msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}" msgstr "Knjigovodstveni Unos za {0}: {1} može se napraviti samo u valuti: {2}" #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193 -#: erpnext/assets/doctype/asset/asset.js:190 -#: erpnext/assets/doctype/asset_repair/asset_repair.js:92 -#: erpnext/buying/doctype/supplier/supplier.js:123 +#: erpnext/assets/doctype/asset/asset.js:198 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:101 +#: erpnext/buying/doctype/supplier/supplier.js:132 #: erpnext/public/js/controllers/stock_controller.js:88 #: erpnext/public/js/utils/ledger_preview.js:8 -#: erpnext/selling/doctype/customer/customer.js:173 +#: erpnext/selling/doctype/customer/customer.js:182 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51 msgid "Accounting Ledger" msgstr "Kjnigovodstveni Registar" @@ -2090,16 +2093,14 @@ msgstr "Knjigovodstveno Uvođenje" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounting_period/accounting_period.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounting Period" msgstr "Knjigovodstveni Period" #: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." -msgstr "Knjigovodstveni Period se ne može kreirati za budući datum. Datum završetka {0} je sutra." +msgstr "Knjigovodstveni Period se ne može izraditi za budući datum. Datum završetka {0} je sutra." #: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" @@ -2109,7 +2110,7 @@ msgstr "Knjigovodstveni Period se preklapa sa {0}" #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Accounting entries are frozen up to this date. Only users with the specified role can create or modify entries before this date." -msgstr "Knjigovodstveni unosi su zamrznuti do ovog datuma. Samo korisnici sa navedenom ulogom mogu kreirati ili mijenjati unose prije ovog datuma." +msgstr "Knjigovodstveni unosi su zatvoreni do ovog datuma. Samo korisnici sa navedenom ulogom mogu izraditi ili mijenjati unose prije ovog datuma." #. Label of the applicable_on_account (Link) field in DocType 'Applicable On #. Account' @@ -2133,7 +2134,7 @@ msgstr "Knjigovodstveni unosi su zamrznuti do ovog datuma. Samo korisnici sa nav #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:513 +#: erpnext/setup/doctype/company/company.py:515 #: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/setup/doctype/incoterm/incoterm.json @@ -2153,7 +2154,7 @@ msgstr "Zatvaranje Knjigovodstva" #. Label of the accounts_frozen_till_date (Date) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Accounts Frozen Till Date" -msgstr "Računi Zamrznuti Do" +msgstr "Računi Zatvoreni Do" #: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:186 msgid "Accounts Included in Report" @@ -2173,13 +2174,18 @@ msgstr "Računi Nedostaju u Izvještaju" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/report/accounts_payable/accounts_payable.json #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126 -#: erpnext/buying/doctype/supplier/supplier.js:135 +#: erpnext/buying/doctype/supplier/supplier.js:144 #: erpnext/workspace_sidebar/financial_reports.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Accounts Payable" msgstr "Obaveze" +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounts Payable Ageing" +msgstr "" + #. Name of a report #: erpnext/accounts/report/accounts_payable/accounts_payable.js:191 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json @@ -2198,7 +2204,7 @@ msgstr "Sažetak Obaveza" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.json #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:149 -#: erpnext/selling/doctype/customer/customer.js:162 +#: erpnext/selling/doctype/customer/customer.js:171 #: erpnext/workspace_sidebar/financial_reports.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json @@ -2217,6 +2223,11 @@ msgstr "Podešavanje Potraživanja / Obaveza" msgid "Accounts Receivable / Payable remarks length" msgstr "Dužina napomena Potraživanjima / Obavezama" +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounts Receivable Ageing" +msgstr "" + #. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice #. Discounting' #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json @@ -2248,17 +2259,12 @@ msgstr "Račun Neplaćenih Potraživanja" #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Accounts Settings" msgstr "Postavke Knjigovodstva" -#. Name of a Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/accounts_setup/accounts_setup.json #: erpnext/desktop_icon/accounts_setup.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounts Setup" msgstr "Knjigovodstvo" @@ -2296,7 +2302,7 @@ msgstr "Račun Akumulirane Amortizacije" #. Label of the accumulated_depreciation_amount (Currency) field in DocType #. 'Depreciation Schedule' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:173 -#: erpnext/assets/doctype/asset/asset.js:385 +#: erpnext/assets/doctype/asset/asset.js:393 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Accumulated Depreciation Amount" msgstr "Iznos Akumulirane Amortizacije" @@ -2318,9 +2324,9 @@ msgstr "Akumulirani mjesečni proračun za račun {0} u odnosu na {1} {2} iznosi msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" msgstr "Akumulirani Mjesečni Proračun za Račun {0} u odnosu na {1}: {2} iznosi {3}. Bit će premašen za {4}" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:46 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:12 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:47 msgid "Accumulated Values" msgstr "Akumulirane Vrijednosti" @@ -2367,7 +2373,7 @@ msgstr "Radnja ako je prekoračen akumulirani mjesečni proračun preko Materija #. field in DocType 'Budget' #: erpnext/accounts/doctype/budget/budget.json msgid "Action if Accumulated Monthly Budget Exceeded on PO" -msgstr "Radnja ako je Prekoračen Akumulirani Mjesečni Proračun preko Kupovnog Naloga" +msgstr "Radnja ako je Prekoračen Akumulirani Mjesečni Proračun preko Nabavnog Naloga" #. Label of the action_if_accumulated_monthly_exceeded_on_cumulative_expense #. (Select) field in DocType 'Budget' @@ -2444,7 +2450,7 @@ msgstr "Izvedene Radnje" #. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType #. 'Stock Settings' -#: erpnext/stock/doctype/item/item.js:481 +#: erpnext/stock/doctype/item/item.js:496 #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Activate Serial / Batch No for Item" msgstr "Omogući Serijski / Šaržni broj za Artikal" @@ -2458,11 +2464,6 @@ msgstr "Aktivni Potencijalni Klijenti" msgid "Active Status" msgstr "Aktivan status" -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Active Subcontracted Items" -msgstr "Aktivni Podugovoreni Artikli" - #. Label of the activities_tab (Tab Break) field in DocType 'Lead' #. Label of the activities_tab (Tab Break) field in DocType 'Opportunity' #. Label of the activities_tab (Tab Break) field in DocType 'Prospect' @@ -2487,7 +2488,7 @@ msgstr "Trošak Aktivnosti postoji za {0} u odnosu na vrstu aktivnosti - {1}" #: erpnext/projects/doctype/activity_type/activity_type.js:10 msgid "Activity Cost per Employee" -msgstr "Trošak aktivnosti po personalu" +msgstr "Trošak Aktivnosti po Osoblju" #. Label of the activity_type (Link) field in DocType 'Sales Invoice Timesheet' #. Label of the activity_type (Link) field in DocType 'Activity Cost' @@ -2568,7 +2569,7 @@ msgstr "Stvarni Datum Završetka" msgid "Actual End Date (via Timesheet)" msgstr "Stvarni Datum Završetka (preko Radnog Lista)" -#: erpnext/manufacturing/doctype/work_order/work_order.py:322 +#: erpnext/manufacturing/doctype/work_order/work_order.py:328 msgid "Actual End Date cannot be before Actual Start Date" msgstr "Stvarni datum završetka ne može biti prije stvarnog datuma početka" @@ -2578,7 +2579,7 @@ msgstr "Stvarni datum završetka ne može biti prije stvarnog datuma početka" msgid "Actual End Time" msgstr "Stvarno Vrijeme Završetka" -#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:464 msgid "Actual Expense" msgstr "Stvarni Trošak" @@ -2598,7 +2599,7 @@ msgstr "Stvarni Operativni Troškovi" #. Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Actual Operation Time" -msgstr "Stvarno Vrijeme Operacije" +msgstr "Stvarno Vrijeme Radnje" #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:461 msgid "Actual Posting" @@ -2639,7 +2640,7 @@ msgstr "Stvarna količina je obavezna" msgid "Actual Qty {0} / Waiting Qty {1}" msgstr "Stvarna Količina {0} / Količina na Čekanju {1}" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:196 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:222 msgid "Actual Qty: Quantity available in the warehouse." msgstr "Stvarna količina: Količina dostupna u skladištu." @@ -2693,7 +2694,7 @@ msgstr "Stvarna Količina na Zalihama" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534 #: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" -msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}" +msgstr "Stvarni tip PDV-a ne može se uključiti u cjenu Artikla u redu {0}" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1022 msgid "Ad-hoc Qty" @@ -2701,7 +2702,7 @@ msgstr "Namjenska Količina" #: erpnext/stock/doctype/price_list/price_list.js:7 msgid "Add / Edit Prices" -msgstr "Dodaj / Uredi cijene" +msgstr "Dodaj / Uredi cjene" #: erpnext/accounts/report/general_ledger/general_ledger.js:214 msgid "Add Columns in Transaction Currency" @@ -2724,7 +2725,7 @@ msgstr "Dodaj popust" #: erpnext/public/js/event.js:40 msgid "Add Employees" -msgstr "Dodaj Personal" +msgstr "Dodaj Osoblje" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:256 #: erpnext/selling/doctype/sales_order/sales_order.js:278 @@ -2768,7 +2769,7 @@ msgstr "Dodaj višestruko" msgid "Add Multiple Tasks" msgstr "Dodaj više zadataka" -#: erpnext/stock/doctype/item/item.js:981 +#: erpnext/stock/doctype/item/item.js:1002 msgid "Add Opening Stock" msgstr "Dodaj Početne Zalihe" @@ -2785,7 +2786,7 @@ msgstr "Dodaj popust na narudžbu" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 msgid "Add Phantom Item" -msgstr "Dodaj Fantomski Artikal" +msgstr "Dodaj Viritualni Artikal" #. Label of the add_quote (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json @@ -2793,7 +2794,7 @@ msgid "Add Quote" msgstr "Dodaj ponudu" #. Label of the add_raw_materials (Button) field in DocType 'BOM Operation' -#: erpnext/manufacturing/doctype/bom/bom.js:1050 +#: erpnext/manufacturing/doctype/bom/bom.js:1054 #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Add Raw Materials" msgstr "Dodaj Sirovine" @@ -2938,7 +2939,7 @@ msgstr "Dodaj u Tranzit" #: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:117 msgid "Add vouchers to generate preview." -msgstr "Dodaj verifikate za generiranje pregleda." +msgstr "Dodaj verifikate za izradu pregleda." #: erpnext/accounts/doctype/coupon_code/coupon_code.js:36 msgid "Add/Edit Coupon Conditions" @@ -2954,11 +2955,11 @@ msgstr "Dodano Od" msgid "Added On" msgstr "Dodano" -#: erpnext/buying/doctype/supplier/supplier.py:135 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Added Supplier Role to User {0}." msgstr "Dodata uloga dobavljača korisniku {0}." -#: erpnext/controllers/website_list_for_contact.py:311 +#: erpnext/controllers/website_list_for_contact.py:313 msgid "Added {1} role to user {0}." msgstr "Dodana je uloga {1} korisniku {0}." @@ -3197,7 +3198,7 @@ msgstr "Dodatne informacije" msgid "Additional Information updated successfully." msgstr "Dodatne informacije su uspješno ažurirane." -#: erpnext/manufacturing/doctype/work_order/work_order.js:839 +#: erpnext/manufacturing/doctype/work_order/work_order.js:843 msgid "Additional Material Transfer" msgstr "Dodatni Prijenos Materijala" @@ -3220,7 +3221,7 @@ msgstr "Dodatni operativni troškovi" msgid "Additional Transferred Qty" msgstr "Dodatna Prenesena Količina" -#: erpnext/manufacturing/doctype/work_order/work_order.py:592 +#: erpnext/manufacturing/doctype/work_order/work_order.py:598 msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "Dodatna Prenesena Količina {0} ne može biti veća od {1}. Da biste ovo ispravili, povećajte procentualnu vrijednost 'Prenesi Dodatne Sirovine u Nedovršenu Proizvodnju' u Postavkama Proizvodnje." @@ -3281,7 +3282,7 @@ msgstr "Adresa i kontakt" #: erpnext/setup/doctype/employee/employee.json #: erpnext/setup/doctype/sales_partner/sales_partner.json msgid "Address & Contacts" -msgstr "Adresa i kontakti" +msgstr "Adresa & Kontakt" #. Label of a Link in the Financial Reports Workspace #. Name of a report @@ -3290,7 +3291,7 @@ msgstr "Adresa i kontakti" #: erpnext/selling/report/address_and_contacts/address_and_contacts.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Address And Contacts" -msgstr "Adrese i Kontakti" +msgstr "Adresa & Kontakt" #. Label of the address_desc (HTML) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -3357,7 +3358,7 @@ msgstr "Adresa i kontakt" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/stock/doctype/manufacturer/manufacturer.json msgid "Address and Contacts" -msgstr "Adresa & Kontakti" +msgstr "Adresa & Kontakt" #: erpnext/accounts/custom/address.py:33 msgid "Address needs to be linked to a Company. Please add a row for Company in the Links table." @@ -3373,7 +3374,7 @@ msgstr "Adresa koja se koristi za određivanje PDV Kategorije u transakcijama" msgid "Adjustment Against" msgstr "Usaglašavanje Naspram" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:203 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:211 msgid "Adjustment based on Purchase Invoice rate" msgstr "Usklađivanje na osnovu stope fakture nabavke" @@ -3397,7 +3398,7 @@ msgstr "Račun Predujma" #: erpnext/utilities/transaction_base.py:273 msgid "Advance Account: {0} must be in either customer billing currency: {1} or Company default currency: {2}" -msgstr "Račun Predujma: {0} mora biti u valuti fakture klijenta: {1} ili standard valuti kompanije: {2}" +msgstr "Račun Predujma: {0} mora biti u valuti fakture klijenta: {1} ili standard valuti poduzeća: {2}" #. Label of the advance_amount (Currency) field in DocType 'Purchase Invoice #. Advance' @@ -3450,7 +3451,7 @@ msgstr "Status Plaćanja Predujma" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/controllers/accounts_controller.py:279 +#: erpnext/controllers/accounts_controller.py:283 #: erpnext/setup/doctype/company/company.json msgid "Advance Payments" msgstr "Plaćanja Predujma" @@ -3538,7 +3539,7 @@ msgstr "Vazduhoplovstvo" #: erpnext/stock/doctype/stock_settings/stock_settings.js:79 msgid "After save, please refresh the page to apply the changes." -msgstr "Nakon spremanja, osvježite stranicu kako biste primijenili promjene." +msgstr "Nakon spremanja, osvježi stranicu kako biste primijenili promjene." #. Label of the against (Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json @@ -3570,7 +3571,7 @@ msgstr "Naspram Računa" msgid "Against Blanket Order" msgstr "Naspram Ugovornog Naloga" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:838 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:844 msgid "Against Customer Order {0}" msgstr "Naspram Naloga Klijenta {0}" @@ -3714,7 +3715,7 @@ msgstr "Dob" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:138 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1225 msgid "Age (Days)" msgstr "Dob (Dana)" @@ -3823,7 +3824,7 @@ msgstr "Nadimak" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 -#: erpnext/accounts/utils.py:1652 erpnext/public/js/setup_wizard.js:278 +#: erpnext/accounts/utils.py:1647 erpnext/public/js/setup_wizard.js:278 msgid "All Accounts" msgstr "Kontni Plan" @@ -3875,28 +3876,28 @@ msgstr "Sve Grupe Klijenta" #: erpnext/patches/v11_0/update_department_lft_rgt.py:9 #: erpnext/patches/v11_0/update_department_lft_rgt.py:11 #: erpnext/patches/v11_0/update_department_lft_rgt.py:16 -#: erpnext/setup/doctype/company/company.py:506 -#: erpnext/setup/doctype/company/company.py:509 -#: erpnext/setup/doctype/company/company.py:514 -#: erpnext/setup/doctype/company/company.py:520 -#: erpnext/setup/doctype/company/company.py:526 -#: erpnext/setup/doctype/company/company.py:532 -#: erpnext/setup/doctype/company/company.py:538 -#: erpnext/setup/doctype/company/company.py:544 -#: erpnext/setup/doctype/company/company.py:550 -#: erpnext/setup/doctype/company/company.py:556 -#: erpnext/setup/doctype/company/company.py:562 -#: erpnext/setup/doctype/company/company.py:568 -#: erpnext/setup/doctype/company/company.py:574 -#: erpnext/setup/doctype/company/company.py:580 -#: erpnext/setup/doctype/company/company.py:586 +#: erpnext/setup/doctype/company/company.py:508 +#: erpnext/setup/doctype/company/company.py:511 +#: erpnext/setup/doctype/company/company.py:516 +#: erpnext/setup/doctype/company/company.py:522 +#: erpnext/setup/doctype/company/company.py:528 +#: erpnext/setup/doctype/company/company.py:534 +#: erpnext/setup/doctype/company/company.py:540 +#: erpnext/setup/doctype/company/company.py:546 +#: erpnext/setup/doctype/company/company.py:552 +#: erpnext/setup/doctype/company/company.py:558 +#: erpnext/setup/doctype/company/company.py:564 +#: erpnext/setup/doctype/company/company.py:570 +#: erpnext/setup/doctype/company/company.py:576 +#: erpnext/setup/doctype/company/company.py:582 +#: erpnext/setup/doctype/company/company.py:588 msgid "All Departments" msgstr "Svi odjeli" #. Option for the 'Send To' (Select) field in DocType 'SMS Center' #: erpnext/selling/doctype/sms_center/sms_center.json msgid "All Employee (Active)" -msgstr "Sav Personal (Aktivni)" +msgstr "Sve Osoblje (Aktivno)" #: erpnext/setup/doctype/item_group/item_group.py:35 #: erpnext/setup/doctype/item_group/item_group.py:36 @@ -3934,7 +3935,7 @@ msgstr "Kontakt svih prodajnih partnera" #. Option for the 'Send To' (Select) field in DocType 'SMS Center' #: erpnext/selling/doctype/sms_center/sms_center.json msgid "All Sales Person" -msgstr "Sav Prodajni Personal" +msgstr "Sve Prodajno Osoblje" #. Description of a DocType #: erpnext/setup/doctype/sales_person/sales_person.json @@ -3969,13 +3970,13 @@ msgstr "Sve grupe dobavljača" msgid "All Territories" msgstr "Sve teritorije" -#: erpnext/setup/doctype/company/company.py:451 +#: erpnext/setup/doctype/company/company.py:453 msgid "All Warehouses" msgstr "Sva skladišta" #: erpnext/stock/doctype/item/item_prices.html:72 msgid "All active prices for this item across buying and selling price lists." -msgstr "Sve aktivne cijene za ovaj artikal na svim nabavnim i prodajnim cjenovnicima." +msgstr "Sve aktivne cjene za ovaj artikal na svim nabavnim i prodajnim cjenovnicima." #. Description of the 'Reconciled' (Check) field in DocType 'Process Payment #. Reconciliation Log' @@ -4012,15 +4013,15 @@ msgstr "Svi Artikli su već prenesen za ovaj Radni Nalog." msgid "All items in this document already have a linked Quality Inspection." msgstr "Svi Artiklie u ovom dokumentu već imaju povezanu Kontrolu Kvaliteta." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:915 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:921 msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice." msgstr "Svi artikli moraju biti povezane s Prodajnim Nalogom ili Podizvođačkom Nalogu za ovu Prodajnu Fakturu." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:926 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:932 msgid "All linked Sales Orders must be subcontracted." msgstr "Svi povezani Prodajni Nalozi moraju biti podizvođački." -#: erpnext/stock/doctype/pick_list/mapper.py:302 +#: erpnext/stock/doctype/pick_list/mapper.py:309 msgid "All picked items have already been transferred against this Pick List" msgstr "Sve odabrani artikli su već preneseni na ovu listu odabira" @@ -4034,7 +4035,7 @@ msgstr "Svi komentari i e-pošta kopirat će se iz jednog dokumenta u drugi novo msgid "All the items have already been returned." msgstr "Svi artikli su već vraćeni." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1281 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1292 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Svi obavezni Artikli (sirovine) bit će preuzeti iz Sastavnice i popunjene u ovoj tabeli. Ovdje također možete promijeniti izvorno skladište za bilo koji artikal. A tokom proizvodnje možete pratiti prenesene sirovine iz ove tabele." @@ -4108,7 +4109,7 @@ msgstr "Dodjeljeno" #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:409 +#: erpnext/accounts/report/gross_profit/gross_profit.py:411 #: erpnext/public/js/utils/unreconcile.js:87 msgid "Allocated Amount" msgstr "Dodjeljni Iznos" @@ -4129,11 +4130,11 @@ msgstr "Alocirano:" msgid "Allocated amount" msgstr "Dodjeljni Iznos" -#: erpnext/accounts/utils.py:665 +#: erpnext/accounts/utils.py:666 msgid "Allocated amount cannot be greater than unadjusted amount" msgstr "Alocirani iznos ne može biti veći od neusklađenog iznosa" -#: erpnext/accounts/utils.py:663 +#: erpnext/accounts/utils.py:664 msgid "Allocated amount cannot be negative" msgstr "Alocirani iznos ne može biti negativan" @@ -4294,7 +4295,7 @@ msgstr "Dozvoli Ponudu sa nultom količinom" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:210 +#: erpnext/controllers/item_variant.py:272 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Dozvoli Preimenovanje Vrijednosti Atributa" @@ -4311,7 +4312,7 @@ msgstr "Dozvoli Zahtjev za Ponudu s Nultom Količinom" msgid "Allow Resetting Service Level Agreement" msgstr "Dozvoli ponovno postavljanje Ugovora Standardnog Nivoa Servisa" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:788 msgid "Allow Resetting Service Level Agreement from Support Settings." msgstr "Dozvoli ponovno postavljanje ugovora o nivou usluge iz postavki podrške." @@ -4324,7 +4325,7 @@ msgstr "Dozvoli Prodaju" #. in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow Sales Order creation for expired Quotation" -msgstr "Dozvoli kreiranje Prodajnog Naloga za istekle Ponude" +msgstr "Dozvoli izradu Prodajnog Naloga za istekle Ponude" #. Label of the allow_zero_qty_in_sales_order (Check) field in DocType 'Selling #. Settings' @@ -4357,7 +4358,7 @@ msgstr "Dozvoli Korisniku da Uređuje Popust" #. Label of the allow_rate_change (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json msgid "Allow User to Edit Rate" -msgstr "Dozvoli Korisniku da Uređuje Cijenu" +msgstr "Dozvoli Korisniku da Uređuje Cjenu" #. Label of the allow_warehouse_change (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -4368,13 +4369,13 @@ msgstr "Doyvoli Korisniku Uređivanje Skladišta" #. Settings' #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Variant UOM to be different from Template UOM" -msgstr "Dozvoli da se Jedinica Varijante razlikuje od Jedinice Šablona" +msgstr "Dozvoli da se Jedinica Varijante razlikuje od Jedinice Predloška" #. Label of the allow_zero_rate (Check) field in DocType 'Repost Item #. Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json msgid "Allow Zero Rate" -msgstr "Dozvoli Nultu Cijenu" +msgstr "Dozvoli Nultu Cjenu" #. Label of the allow_zero_valuation_rate (Check) field in DocType 'POS Invoice #. Item' @@ -4410,7 +4411,7 @@ msgstr "Dozvoli isporuku prekomjerno proizvedene količine" #. Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow editing Price List rate in transactions" -msgstr "Dozvoli uređivanje cijene cjenovnika u transakcijama" +msgstr "Dozvoli uređivanje cjene cjenovnika u transakcijama" #. Label of the allow_existing_serial_no (Check) field in DocType 'Stock #. Settings' @@ -4422,7 +4423,7 @@ msgstr "Dozvoli da se postojeći serijski broj ponovo Proizvede/Primi" #. DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Allow internal transfers at user-defined rate" -msgstr "Dozvoli interne prenose po korisnički definiranoj cijeni" +msgstr "Dozvoli interne prenose po korisnički definiranoj cjeni" #. Description of the 'Allow Continuous Material Consumption' (Check) field in #. DocType 'Manufacturing Settings' @@ -4449,7 +4450,7 @@ msgstr "Dozvoli više Nabavnih Naloga za jedan Nabavni Nalog klijenta" #: erpnext/buying/doctype/buying_settings/buying_settings.json #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow negative rates for Items" -msgstr "Dozvoli negativne cijene za artikle" +msgstr "Dozvoli negativne cjene za artikle" #. Label of the allow_negative_stock (Check) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json @@ -4472,29 +4473,29 @@ msgstr "Dozvoli djelomičnu rezervaciju" #. field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Allow purchase invoice creation without purchase order" -msgstr "Dozvoli kreiranje Nabavne Fakture bez Nabavnog Naloga" +msgstr "Dozvoli izradu Nabavne Fakture bez Nabavnog Naloga" #. Label of the allow_purchase_invoice_creation_without_purchase_receipt #. (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Allow purchase invoice creation without purchase receipt" -msgstr "Dozvoli kreiranje Nabavne Fakture bez Nabavnog Raćuna" +msgstr "Dozvoli izradu Nabavne Fakture bez Nabavnog Raćuna" #. Label of the dn_required (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Allow sales invoice creation without delivery note" -msgstr "Omogući kreiranje prodajne fakture bez dostavnice" +msgstr "Omogući izradu prodajne fakture bez dostavnice" #. Label of the so_required (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Allow sales invoice creation without sales order" -msgstr "Omogući kreiranje prodajne fakture bez prodajnog naloga" +msgstr "Omogući izradu prodajne fakture bez prodajnog naloga" #. Description of the 'Zero-Quantity Line Items' (Section Break) field in #. DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow sales transactions with zero quantities if the rate is fixed but the quantities are not. e.g. Rate Contracts" -msgstr "Dozvoli prodajne transakcije s nultom količinom ako je cijena fiksna, ali količine nisu. Npr. Ugovori o cijeni" +msgstr "Dozvoli prodajne transakcije s nultom količinom ako je cjena fiksna, ali količine nisu. Npr. Ugovori o cjeni" #. Label of the allow_multiple_items (Check) field in DocType 'Selling #. Settings' @@ -4510,7 +4511,7 @@ msgstr "Dozvolite ngativne zalihe za ovaj artikal, čak i ako je negativno stanj #. Description of the 'Allow Alternative Item' (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Allow substituting this item with an alternative from the Item Alternative list when stock is unavailable." -msgstr "Omogućite zamjenu ovog artikla alternativnim s liste Alternativnih Artikala kada zaliha nije dostupna." +msgstr "Omogući zamjenu ovog artikla alternativnim s liste Alternativnih Artikala kada zaliha nije dostupna." #. Description of the 'Allow Purchase' (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -4552,6 +4553,21 @@ msgstr "Dozvoli Kontrolu Kvaliteta nakon Nabave / Isporuke" msgid "Allow transferring raw materials even after the Required Quantity is fulfilled" msgstr "Dozvoli prijenos sirovina i nakon što je ispunjena Potrebna Količina" +#. Label of the allowed_companies (Table MultiSelect) field in DocType +#. 'Supplier' +#. Label of the allowed_companies (Table MultiSelect) field in DocType +#. 'Customer' +#. Label of the allowed_companies (Table MultiSelect) field in DocType 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Allowed Companies" +msgstr "" + +#: erpnext/stock/doctype/company_restriction/company_restriction.py:74 +msgid "Allowed Companies is required when Restrict to Companies is checked" +msgstr "" + #. Name of a DocType #: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json msgid "Allowed Dimension" @@ -4581,9 +4597,17 @@ msgstr "Dozvoljena Transakcija sa" msgid "Allowed Users" msgstr "Dozvoljeni Korisnici" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:59 +msgid "Allowed Users is not required as Frappe CRM is already installed on the site." +msgstr "Dozvoljeni korisnici nisu obavezni jer je Podrška Prodaje već instalirana na web stranici." + +#: erpnext/crm/doctype/crm_settings/crm_settings.js:17 +msgid "Allowed Users is required for data synchronization from remote Frappe CRM site." +msgstr "Dozvoljeni Korisnici su obavezni za sinhronizaciju podataka sa udaljene lokacije Prodajne Podrške." + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." -msgstr "Dozvoljene primarne uloge su 'Klijent' i 'Dobavljač'. Molimo odaberite samo jednu od ovih uloga." +msgstr "Dozvoljene primarne uloge su 'Klijent' i 'Dobavljač'. Odaberi samo jednu od ovih uloga." #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' @@ -4602,19 +4626,19 @@ msgstr "Omogućava zadržavanje određene količine zaliha za određeni Prodajni #. in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allows users to submit Purchase Orders with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." -msgstr "Omogućava korisnicima da podnose narudžbenice s nultom količinom. Korisno kada su cijene fiksne, ali količine nisu. Npr. Ugovori o cijenama." +msgstr "Omogućava korisnicima da podnose narudžbenice s nultom količinom. Korisno kada su cjene fiksne, ali količine nisu. Npr. Ugovori o cjenama." #. Description of the 'Allow Request for Quotation with Zero Quantity' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allows users to submit Request for Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." -msgstr "Omogućava korisnicima da podnesu zahtjev za ponude s nultom količinom. Korisno kada su cijene fiksne, ali količine nisu. Npr. Ugovori o cijenama." +msgstr "Omogućava korisnicima da podnesu zahtjev za ponude s nultom količinom. Korisno kada su cjene fiksne, ali količine nisu. Npr. Ugovori o cjenama." #. Description of the 'Allow Supplier Quotation with Zero Quantity' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allows users to submit Supplier Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." -msgstr "Omogućava korisnicima da dostave ponude dobavljača s nultom količinom. Korisno kada su cijene fiksne, ali količine nisu. Npr. Ugovori o cijenama." +msgstr "Omogućava korisnicima da dostave ponude dobavljača s nultom količinom. Korisno kada su cjene fiksne, ali količine nisu. Npr. Ugovori o cjenama." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1190 #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1210 @@ -4624,7 +4648,7 @@ msgstr "Omogućava korisnicima da dostave ponude dobavljača s nultom količinom msgid "Already Imported" msgstr "Već Uvezeno" -#: erpnext/stock/doctype/pick_list/pick_list.py:1111 +#: erpnext/stock/doctype/pick_list/pick_list.py:1132 msgid "Already Picked" msgstr "Već odabrano" @@ -4632,7 +4656,7 @@ msgstr "Već odabrano" msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Već postavljeni standard u Kasa profilu {0} za korisnika {1}, onemogući standard u profilu Kase" -#: erpnext/stock/doctype/item/item.js:38 +#: erpnext/stock/doctype/item/item.js:40 msgid "Also you can't switch back to FIFO after setting the valuation method to Moving Average for this item." msgstr "Također, ne možete se vratiti na FIFO nakon što ste za ovaj artikal postavili metodu vrednovanja na MA." @@ -4643,8 +4667,8 @@ msgstr "Alternativna Jedinica" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:604 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:344 +#: erpnext/public/js/utils.js:616 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:343 msgid "Alternate Item" msgstr "Alternativni Artikal" @@ -4672,9 +4696,9 @@ msgstr "Alternativni Artikli" msgid "Alternative item must not be same as item code" msgstr "Alternativni Artikal ne smije biti isti kao Artikal Kod" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:383 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 msgid "Alternatively, you can download the template and fill your data in." -msgstr "Alternativno, možete preuzeti šablon i popuniti svoje podatke." +msgstr "Alternativno, možete preuzeti predložak i popuniti svoje podatke." #. Option for the 'Action on New Invoice' (Select) field in DocType 'POS #. Profile' @@ -5063,8 +5087,8 @@ msgstr "Amperminuta" msgid "Ampere-Second" msgstr "Amper-sekunda" -#: erpnext/controllers/trends.py:291 erpnext/controllers/trends.py:303 -#: erpnext/controllers/trends.py:312 +#: erpnext/controllers/trends.py:301 erpnext/controllers/trends.py:313 +#: erpnext/controllers/trends.py:322 msgid "Amt" msgstr "Iznos" @@ -5077,20 +5101,20 @@ msgstr "Grupa Artikla je način za klasifikaciju Artikala na osnovu tipa." #. Request' (Check) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." -msgstr "Korisniku s ulogom 'Odgovorni Nabave' bit će poslana e-pošta s obavijesti kada se kreira automatski Materijalni Zahtjev." +msgstr "Korisniku s ulogom 'Odgovorni Nabave' bit će poslana e-pošta s obavijesti kada se izradi automatski Materijalni Zahtjev." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:766 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Pojavila se greška prilikom ponovnog knjiženja vrijednosti artikla preko {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:495 +#: erpnext/public/js/utils/sales_common.js:493 msgid "An error occurred during the update process" msgstr "Došlo je do greške tokom obrade ažuriranja" -#: erpnext/stock/reorder_item.py:370 +#: erpnext/stock/reorder_item.py:372 msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :" -msgstr "Došlo je do greške za određene artikle prilikom kreiranja Materijalnog Naloga na osnovu nivoa ponovnog naručivanja. Ispravite ove probleme:" +msgstr "Došlo je do greške za određene artikle prilikom izrade Materijalnog Naloga na osnovu nivoa ponovnog naručivanja. Ispravite ove probleme:" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:124 msgid "Analysis Chart" @@ -5139,13 +5163,13 @@ msgstr "Godišnji Promet" #: erpnext/accounts/doctype/budget/budget.py:145 msgid "Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' with overlapping fiscal years." -msgstr "Već postoji još jedan zapis budžeta '{0}' za {1} '{2}' i račun '{3}' sa preklapajućim fiskalnim godinama." +msgstr "Već postoji još jedan zapis proračuna '{0}' za {1} '{2}' i račun '{3}' sa preklapajućim fiskalnim godinama." #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:107 msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}" msgstr "Drugi zapis dodjele Centra Troškova {0} primjenjiv od {1}, stoga će ova dodjela biti primjenjiva do {2}" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1044 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1045 msgid "Another Payment Request is already processed" msgstr "Drugi Zahtjev za Plaćanje je već obrađen" @@ -5212,7 +5236,7 @@ msgstr "Primjenjivo na (Pozicija)" #. Label of the to_emp (Link) field in DocType 'Authorization Rule' #: erpnext/setup/doctype/authorization_rule/authorization_rule.json msgid "Applicable To (Employee)" -msgstr "Primjenjivo na (Personal)" +msgstr "Primjenjivo na (Osoblje)" #. Label of the system_role (Link) field in DocType 'Authorization Rule' #: erpnext/setup/doctype/authorization_rule/authorization_rule.json @@ -5353,16 +5377,16 @@ msgstr "Primijeni popust na" #. Label of the apply_discount_on_rate (Check) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:190 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:199 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:208 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:217 msgid "Apply Discount on Discounted Rate" -msgstr "Primijenite popust na sniženu cijenu" +msgstr "Primijenite popust na sniženu cjenu" #. Label of the apply_discount_on_rate (Check) field in DocType 'Promotional #. Scheme Price Discount' #: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json msgid "Apply Discount on Rate" -msgstr "Primijeni Popust na Cijenu" +msgstr "Primijeni Popust na Cjenu" #. Label of the apply_multiple_pricing_rules (Check) field in DocType 'Pricing #. Rule' @@ -5374,7 +5398,7 @@ msgstr "Primijeni Popust na Cijenu" #: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json #: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json msgid "Apply Multiple Pricing Rules" -msgstr "Primijenite više pravila o cijenama" +msgstr "Primijenite više pravila o cjenama" #. Label of the apply_on (Select) field in DocType 'Pricing Rule' #. Label of the apply_on (Select) field in DocType 'Promotional Scheme' @@ -5452,6 +5476,12 @@ msgstr "Primijeniti na sve Dokumente Zaliha" msgid "Apply to Document" msgstr "Primijeniti na Dokument" +#. Description of the 'Additional Discount Amount' (Currency) field in DocType +#. 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Applying a Discount Amount? When this Sales Order is partially fulfilled through multiple Delivery Notes and Sales Invoices, the Discount Amount is allocated on a FIFO basis. The earlier transactions receive a larger share of the discount. To spread the discount proportionally across item prices, use Additional Discount Percentage instead." +msgstr "Primjena iznosa popusta? Kada se ovaj Prodajnni Nalog djelomično ispuni putem više Dostavnice i Prodajnih Faktura, iznos popusta raspoređuje se po FIFO principu. Ranije transakcije dobivaju veći dio popusta. Da biste popust proporcionalno rasporedili na cijene artikala, umjesto toga koristite dodatni postotak popusta." + #. Name of a DocType #. Label of a Link in the CRM Workspace #. Label of a Workspace Sidebar Item @@ -5507,7 +5537,7 @@ msgstr "Termin je uspješno zakazan" #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" -msgstr "Termin je kreiran. Ali Potencijalni Klijent nije pronađen. Provjeri e-poštu da potvrdite" +msgstr "Termin je izrađen. Ali Potencijalni Klijent nije pronađen. Provjeri e-poštu da potvrdite" #. Label of the approving_role (Link) field in DocType 'Authorization Rule' #: erpnext/setup/doctype/authorization_rule/authorization_rule.json @@ -5569,7 +5599,7 @@ msgstr "Jeste li sigurni da želite ponovo pokrenuti ovu pretplatu?" #: erpnext/accounts/doctype/budget/budget.js:83 msgid "Are you sure you want to revise this budget? The current budget will be cancelled and a new draft will be created." -msgstr "Jeste li sigurni da želite revidirati ovaj budžet? Trenutni budžet će biti otkazan i bit će kreiran novi nacrt." +msgstr "Jeste li sigurni da želite revidirati ovaj proračun? Trenutni proračun će biti otkazan i bit će izrađen novi nacrt." #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:379 msgid "Are you sure you want to unmatch the voucher from this transaction?" @@ -5625,15 +5655,15 @@ msgstr "Kao na Datum" msgid "As per Stock UOM" msgstr "Prema Jedinici Zaliha" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:189 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:207 msgid "As the field {0} is enabled, the field {1} is mandatory." msgstr "Pošto je polje {0} omogućeno, polje {1} je obavezno." -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:197 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:215 msgid "As the field {0} is enabled, the value of the field {1} should be more than 1." msgstr "Pošto je polje {0} omogućeno, vrijednost polja {1} bi trebala biti veća od 1." -#: erpnext/stock/doctype/item/item.py:1122 +#: erpnext/stock/doctype/item/item.py:1127 msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Pošto postoje postojeće podnešene transakcije naspram artikla {0}, ne možete promijeniti vrijednost {1}." @@ -5641,7 +5671,7 @@ msgstr "Pošto postoje postojeće podnešene transakcije naspram artikla {0}, ne msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Pošto ima dovoljno artikala podsklopa, radni nalog nije potreban za Skladište {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Pošto ima dovoljno sirovina, Materijalni Nalog nije potreban za Skladište {0}." @@ -5783,7 +5813,7 @@ msgstr "Račun kategorije imovine" msgid "Asset Category Name" msgstr "Naziv kategorije imovine" -#: erpnext/stock/doctype/item/item.py:377 +#: erpnext/stock/doctype/item/item.py:382 msgid "Asset Category is mandatory for Fixed Asset item" msgstr "Kategorija Imovine je obavezna za Artikal Fiksne Imovine" @@ -5825,7 +5855,7 @@ msgstr "Raspored Amortizacije Imovine {0} za Imovinu {1} i Finansijski Registar #: erpnext/assets/doctype/asset/asset.py:239 msgid "Asset Depreciation Schedules created/updated:Primjer Poruke
\n\n" "<p>Poštovani {{ doc.contact_person }},</p>\n\n" "<p>Tražim plaćanje za {{ doc.doctype }}, {{ doc.name }} za {{ doc.grand_total }}.</p>\n\n" "<a href=\"{{ payment_url }}\"> kliknite ovdje da platite </a>\n\n" "
{0}
Please check, edit if needed, and submit the Asset." -msgstr "Kreirani/ažurirani rasporedi amortizacije imovine:
{0}
Molimo provjerite, uredite ako je potrebno i pošaljite imovinu." +msgstr "Izrađeni/ažurirani rasporedi amortizacije imovine:
{0}
Provjeri, uredite ako je potrebno i pošalji imovinu." #. Name of a report #. Label of a Link in the Assets Workspace @@ -5974,6 +6004,7 @@ msgstr "Imovina primljena, ali nije plaćena" #. Label of the asset_repair (Link) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item #: erpnext/assets/doctype/asset/asset.js:113 +#: erpnext/assets/doctype/asset/asset.js:152 #: erpnext/assets/doctype/asset_repair/asset_repair.json #: erpnext/assets/workspace/assets/assets.json #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json @@ -6024,8 +6055,7 @@ msgstr "Tip Imovine" #. Label of the asset_value (Currency) field in DocType 'Asset Capitalization #. Asset Item' -#: erpnext/assets/dashboard_fixtures.py:180 -#: erpnext/assets/doctype/asset/asset.js:517 +#: erpnext/assets/doctype/asset/asset.js:525 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:208 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:457 @@ -6048,7 +6078,6 @@ msgid "Asset Value Adjustment cannot be posted before Asset's purchase date { msgstr "Prilagodba Vrijednosti Imovine ne može se knjižiti prije datuma nabave sredstva {0}." #. Label of a chart in the Assets Workspace -#: erpnext/assets/dashboard_fixtures.py:56 #: erpnext/assets/workspace/assets/assets.json msgid "Asset Value Analytics" msgstr "Analiza Vrijednosti Imovine" @@ -6071,11 +6100,11 @@ msgstr "Imovina kapitalizirana nakon podnošenja Kapitalizacije Imovine {0}" #: erpnext/assets/doctype/asset/asset.py:290 msgid "Asset created" -msgstr "Imovina kreirana" +msgstr "Imovina izrađena" #: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" -msgstr "Imovina kreirana nakon odvajanja od imovine {0}" +msgstr "Imovina izrađena nakon odvajanja od imovine {0}" #: erpnext/assets/doctype/asset/asset.py:293 msgid "Asset deleted" @@ -6085,7 +6114,7 @@ msgstr "Imovina izbrisana" msgid "Asset issued to Employee {0}" msgstr "Imovina izdata {0}" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:178 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:181 msgid "Asset out of order due to Asset Repair {0}" msgstr "Imovina nije u funkciji zbog popravke imovine {0}" @@ -6130,7 +6159,7 @@ msgstr "Imovina prebačena na lokaciju {0}" msgid "Asset updated after being split into Asset {0}" msgstr "Imovina je ažurirana nakon što je podijeljena na Imovinu {0}" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:335 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:338 msgid "Asset updated due to Asset Repair {0} {1}." msgstr "Imovina ažurirana zbog Popravke Imovine {0} {1}." @@ -6179,9 +6208,9 @@ msgstr "Imovina {0} nije podnešena. Podnesi imovinu prije nastavka." msgid "Asset {0} must be submitted" msgstr "Imovina {0} mora biti podnešena" -#: erpnext/controllers/buying_controller.py:1039 +#: erpnext/controllers/buying_controller.py:1047 msgid "Asset {assets_link} created for {item_code}" -msgstr "Imovina {assets_link} kreirana za {item_code}" +msgstr "Imovina {assets_link} izrađena za {item_code}" #: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:222 msgid "Asset's depreciation schedule updated after Asset Shift Allocation {0}" @@ -6204,7 +6233,7 @@ msgstr "Vrijednost imovine prilagođena nakon podnošenja Ispravke Vrijednosti I #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:271 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6217,17 +6246,17 @@ msgstr "Imovina" msgid "Assets Setup" msgstr "Postavljanje Imovine" -#: erpnext/controllers/buying_controller.py:1057 +#: erpnext/controllers/buying_controller.py:1065 msgid "Assets not created for {item_code}. You will have to create asset manually." -msgstr "Imovina nije kreirana za {item_code}. Morat ćete kreirati Imovinu ručno." +msgstr "Imovina nije izrađena za {item_code}. Morat ćete izraditi Imovinu ručno." -#: erpnext/controllers/buying_controller.py:1044 +#: erpnext/controllers/buying_controller.py:1052 msgid "Assets {assets_link} created for {item_code}" -msgstr "Imovina {assets_link} kreirana za {item_code}" +msgstr "Imovina {assets_link} izrađena za {item_code}" #: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" -msgstr "Dodijeli Posao Personalu" +msgstr "Dodijeli Posao Osoblju" #. Label of the assign_to_name (Read Only) field in DocType 'Asset Maintenance #. Task' @@ -6262,7 +6291,7 @@ msgstr "Red #{0}: Izabrana količina {1} za artikl {2} je veća od raspoloživih msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "Red #{0}: Izabrana količina {1} za artikal {2} je veća od raspoloživih zaliha {3} u skladištu {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1485 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1486 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "U Redu {0}: U Serijskom i Šaržnom Paketu {1} mora imati status dokumenta kao 1, a ne 0" @@ -6295,7 +6324,7 @@ msgstr "Najmanje jedan način plaćanja za Kasa Fakturu je obavezan." msgid "At least one of the Applicable Modules should be selected" msgstr "Najmanje jedan od primjenjivih modula treba odabrati" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:204 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:222 msgid "At least one of the Selling or Buying must be selected" msgstr "Najmanje jedno od Prodaje ili Nabave mora biti odabrano" @@ -6309,7 +6338,7 @@ msgstr "Najmanje jedan artikal sirovine mora biti prisutan u unosu zaliha za tip #: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:27 msgid "At least one row is required for a financial report template" -msgstr "Za šablon finansijskog izvještaja potreban je barem jedan red" +msgstr "Za predložak finansijskog izvještaja potreban je barem jedan red" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:165 msgid "At row #{0}: the Difference Account must not be a Stock type account..." @@ -6323,7 +6352,7 @@ msgstr "U redu #{0}: id sekvence {1} ne može biti manji od id-a sekvence pretho msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "U redu #{0}: odabrali ste Račun Razlike {1}..." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1233 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1234 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Red {0}: Broj Šarće je obavezan za Artikal {1}" @@ -6331,21 +6360,21 @@ msgstr "Red {0}: Broj Šarće je obavezan za Artikal {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Red {0}: Nadređeni Redni Broj ne može se postaviti za artikal {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1218 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1219 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Red {0}: Količina je obavezna za Šaržu {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1225 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1226 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Red {0}: Serijski Broj je obavezan za Artikal {1}" -#: erpnext/stock/services/serial_batch_bundle_service.py:502 +#: erpnext/stock/services/serial_batch_bundle_service.py:504 msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "U Redu {0}: Serijski i Šaržni Paket {1} je već stvoren. Uklonite vrijednosti iz polja za serijski ili šaržni broj." #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" -msgstr "Red {0}: postavite Nadređeni Redni Broj za Artikal {1}" +msgstr "Red {0}: postavi Nadređeni Redni Broj za Artikal {1}" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json @@ -6399,31 +6428,31 @@ msgstr "Naziv Atributa" msgid "Attribute Value" msgstr "Vrijednost Atributa" -#: erpnext/stock/doctype/item/item.py:888 +#: erpnext/stock/doctype/item/item.py:893 msgid "Attribute Value {0} is not valid for the selected attribute {1}." msgstr "Vrijednost atributa {0} nije važeća za odabrani atribut {1}." -#: erpnext/stock/doctype/item/item.py:1034 +#: erpnext/stock/doctype/item/item.py:1039 msgid "Attribute table is mandatory" msgstr "Tabela Atributa je obavezna" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:107 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:109 msgid "Attribute value: {0} must appear only once" msgstr "Vrijednost Atributa: {0} se mora pojaviti samo jednom" -#: erpnext/stock/doctype/item/item.py:877 +#: erpnext/stock/doctype/item/item.py:882 msgid "Attribute {0} is disabled." msgstr "Atribut {0} je onemogućen." -#: erpnext/stock/doctype/item/item.py:865 +#: erpnext/stock/doctype/item/item.py:870 msgid "Attribute {0} is not valid for the selected template." -msgstr "Atribut {0} nije valjan za odabrani šablon." +msgstr "Atribut {0} nije valjan za odabrani predložak." -#: erpnext/stock/doctype/item/item.py:1038 +#: erpnext/stock/doctype/item/item.py:1043 msgid "Attribute {0} selected multiple times in Attributes Table" msgstr "Atribut {0} izabran više puta u Tabeli Atributa" -#: erpnext/stock/doctype/item/item.py:966 +#: erpnext/stock/doctype/item/item.py:971 msgid "Attributes" msgstr "Atributi" @@ -6481,30 +6510,30 @@ msgstr "Ovlaštena Vrijednost" #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Auto Create Exchange Rate Revaluation" -msgstr "Automatsko Kreiranje Revalorizacije Deviznog Kursa" +msgstr "Automatska izrada Revalorizacije Deviznog Kursa" #. Label of the auto_created (Check) field in DocType 'Fiscal Year' #: erpnext/accounts/doctype/fiscal_year/fiscal_year.json msgid "Auto Created" -msgstr "Automatski Kreirano" +msgstr "Automatski Izrađeno" #. Label of the auto_created_via_reorder (Check) field in DocType 'Material #. Request' #: erpnext/stock/doctype/material_request/material_request.json msgid "Auto Created (Reorder)" -msgstr "Automatski Kreirano (Automatski Naručeno)" +msgstr "Automatski Izrađeno (Automatski Naručeno)" #. Label of the auto_created_serial_and_batch_bundle (Check) field in DocType #. 'Stock Ledger Entry' #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json msgid "Auto Created Serial and Batch Bundle" -msgstr "Automatski kreirani Serijski i Šaržni Paket" +msgstr "Automatski izrađeni Serijski i Šaržni Paket" #. Label of the auto_creation_of_contact (Check) field in DocType 'CRM #. Settings' #: erpnext/crm/doctype/crm_settings/crm_settings.json msgid "Auto Creation of Contact" -msgstr "Automatsko kreiranje kontakta" +msgstr "Automatska izrada kontakta" #: erpnext/public/js/utils/serial_no_batch_selector.js:380 msgid "Auto Fetch" @@ -6520,9 +6549,9 @@ msgstr "Automatski Preuzmi Serijske Brojeve" msgid "Auto Material Request" msgstr "Automatski Materijalni Nalog" -#: erpnext/stock/reorder_item.py:321 +#: erpnext/stock/reorder_item.py:323 msgid "Auto Material Requests Generated" -msgstr "Automatski Materijalni Nalog Generisan" +msgstr "Automatski Materijalni Nalog Izrađen" #. Label of the auto_opt_in (Check) field in DocType 'Loyalty Program' #: erpnext/accounts/doctype/loyalty_program/loyalty_program.json @@ -6570,7 +6599,7 @@ msgstr "Automatsko Ponovno Knjiženje Netačnih Unosa Vrijednovanja (Sedmično)" msgid "Auto Reposting of Incorrect Valuation" msgstr "Automatsko Ponovno Knjiženje Netačnog Vrijednovanja" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:209 msgid "Auto Tax Settings Error" msgstr "Greška u Postavkama Automatskog Pdv" @@ -6588,19 +6617,19 @@ msgstr "Automatski zatvori Odgovoran na Mogućnost nakon broja gore navedenih da #. Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Auto create Purchase Receipt" -msgstr "Automatsko Kreiranje Nabavnog Računa" +msgstr "Automatska izrada Nabavnog Računa" #. Label of the auto_create_serial_and_batch_bundle_for_outward (Check) field #. in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Auto create Serial and Batch Bundle for outward" -msgstr "Automatski kreiraj eksterni Serijski i Šaržni Paket" +msgstr "Automatski Izradi eksterni Serijski i Šaržni Paket" #. Label of the auto_create_subcontracting_order (Check) field in DocType #. 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Auto create Subcontracting Order" -msgstr "Automatsko Kreiranje Podizvođačkom Naloga" +msgstr "Automatska izrada Podizvođačkom Naloga" #. Label of the auto_create_assets (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -6611,7 +6640,7 @@ msgstr "Automatski stvori sredstava pri nabavi" #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Auto insert Item Price if missing" -msgstr "Automatski unesite Cijenu Artikla ako nedostaje" +msgstr "Automatski unesi Cjenu Artikla ako nedostaje" #. Description of the 'Enable Automatic Party Matching' (Check) field in #. DocType 'Accounts Settings' @@ -6631,7 +6660,7 @@ msgid "Auto reconcile Payments" msgstr "Automatski Uskladi Plaćanja" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:490 +#: erpnext/public/js/utils/sales_common.js:488 msgid "Auto repeat document updated" msgstr "Automatsko ponavljanje dokumenta je ažurirano" @@ -6666,19 +6695,19 @@ msgstr "Automatski dodaj filtrirani Artikal u Korpu" #. Label of the create_new_batch (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Automatically Create New Batch" -msgstr "Automatski Kreiraj Novi Šaržu" +msgstr "Automatski Izradi Novi Šaržu" #. Label of the add_taxes_from_item_tax_template (Check) field in DocType #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Automatically add Taxes and Charges from Item Tax Template" -msgstr "Automatski dodajte PDV i Naknade iz Šablona za PDV na Artikal" +msgstr "Automatski dodajte PDV i Naknade iz Predloška za PDV na Artikal" #. Label of the add_taxes_from_taxes_and_charges_template (Check) field in #. DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Automatically add taxes from Taxes and Charges Template" -msgstr "Automatski Dodaj PDV iz Šablona PDV i Naknada" +msgstr "Automatski Dodaj PDV iz Predloška PDV i Naknada" #. Label of the automatically_fetch_payment_terms (Check) field in DocType #. 'Accounts Settings' @@ -6718,7 +6747,7 @@ msgid "Availability Of Slots" msgstr "Dostupni Termini" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:391 -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Available" msgstr "Dostupno" @@ -6755,7 +6784,7 @@ msgstr "Datum Dostupnosti za Upotrebu" #. 'Pick List Item' #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:664 +#: erpnext/public/js/utils.js:676 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6884,7 +6913,7 @@ msgstr "Prosječne Vrijednosti Naloga" #: erpnext/accounts/report/share_balance/share_balance.py:58 #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json msgid "Average Rate" -msgstr "Prosječna Cijena" +msgstr "Prosječna Cjena" #. Label of the avg_response_time (Duration) field in DocType 'Issue' #: erpnext/support/doctype/issue/issue.json @@ -6903,26 +6932,26 @@ msgstr "Prosječna Dnevna Isporuka" #. Label of the avg_rate (Float) field in DocType 'Serial and Batch Bundle' #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json msgid "Avg Rate" -msgstr "Prosječna Cijena" +msgstr "Prosječna Cjena" #: erpnext/stock/report/available_serial_no/available_serial_no.py:154 #: erpnext/stock/report/stock_ledger/stock_ledger.py:368 msgid "Avg Rate (Balance Stock)" -msgstr "Prosječna Cijena (Stanje Zaliha)" +msgstr "Prosječna Cjena (Stanje Zaliha)" #: erpnext/stock/report/item_variant_details/item_variant_details.py:96 msgid "Avg. Buying Price List Rate" -msgstr "Prosječna Nabavna Cijena Cjenovnika" +msgstr "Prosječna Nabavna Cjena Cjenovnika" #: erpnext/stock/report/item_variant_details/item_variant_details.py:102 msgid "Avg. Selling Price List Rate" -msgstr "Prosječna Prodajna Cijena Cijenovnika" +msgstr "Prosječna Prodajna Cjena Cjenovnika" -#: erpnext/accounts/report/gross_profit/gross_profit.py:347 +#: erpnext/accounts/report/gross_profit/gross_profit.py:349 msgid "Avg. Selling Rate" -msgstr "Prosječna Prodajna Cijena" +msgstr "Prosječna Prodajna Cjena" -#: erpnext/public/js/templates/shop_floor_template.html:966 +#: erpnext/public/js/templates/shop_floor_template.html:986 msgid "Awaiting Transfer" msgstr "Čeka se Prijenos" @@ -6976,8 +7005,8 @@ msgstr "Spremnička Količina" #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 -#: erpnext/stock/doctype/material_request/material_request.js:351 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:810 +#: erpnext/stock/doctype/material_request/material_request.js:352 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:809 #: erpnext/stock/report/bom_search/bom_search.py:38 #: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:524 @@ -7019,7 +7048,7 @@ msgstr "Konfiguracija Sastavnice" #. Label of the bom_created (Check) field in DocType 'BOM Creator Item' #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json msgid "BOM Created" -msgstr "Sastavnica Kreirana" +msgstr "Sastavnica izrađena" #. Label of the bom_creator (Link) field in DocType 'BOM' #. Name of a DocType @@ -7127,7 +7156,7 @@ msgstr "Broj Sastavnice (za gotov proizvod)" #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/routing/routing.json msgid "BOM Operation" -msgstr "Operacija Sastavnice" +msgstr "Radnji Sastavnice" #. Name of a report #. Label of a Link in the Manufacturing Workspace @@ -7144,7 +7173,7 @@ msgstr "Sastavnica" #: erpnext/stock/report/item_prices/item_prices.py:60 msgid "BOM Rate" -msgstr "Cijena Sastavnice" +msgstr "Cjena Sastavnice" #. Label of a Link in the Manufacturing Workspace #. Name of a report @@ -7207,7 +7236,7 @@ msgstr "Alat Ažuriranje Sastavnice" msgid "BOM Update Tool Log with job status maintained" msgstr "Zapisnik Alata Ažuriranja Sastavnice sa očuvanim statusom posla" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:102 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:103 msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Ažuriranje Sastavnica je već u toku. Pričekaj dok {0} ne završi." @@ -7224,7 +7253,7 @@ msgstr "Artikal Web Stranice Sastavnice" #. Name of a DocType #: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json msgid "BOM Website Operation" -msgstr "Operacija Web Stranice Sastavnice" +msgstr "Radnji Web Stranice Sastavnice" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:250 msgid "BOM and Finished Good Quantity is mandatory for Disassembly" @@ -7236,8 +7265,8 @@ msgstr "Sastavnica i Količina Gotovog Proizvoda su obavezni za Rastavljanje" msgid "BOM and Production" msgstr "Sastavnica & Proizvodnja" -#: erpnext/stock/doctype/material_request/material_request.js:386 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:862 +#: erpnext/stock/doctype/material_request/material_request.js:387 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:861 msgid "BOM does not contain any stock item" msgstr "Sastavnica ne sadrži nijedan artikal zaliha" @@ -7253,15 +7282,15 @@ msgstr "Rekurzija Sastavnice: {1} ne može biti nadređena ili podređena {0}" msgid "BOM update is queued and may take a few minutes. Check {0} for progress." msgstr "Ažuriranje Sastavnice je u redu čekanja i može potrajati nekoliko minuta. Provjeri {0} za napredak." -#: erpnext/manufacturing/doctype/bom/bom.py:1418 +#: erpnext/manufacturing/doctype/bom/bom.py:1434 msgid "BOM {0} does not belong to Item {1}" msgstr "Sastavnica {0} ne pripada Artiklu {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1413 +#: erpnext/manufacturing/doctype/bom/bom.py:1429 msgid "BOM {0} must be active" msgstr "Sastavnica {0} mora biti aktivana" -#: erpnext/manufacturing/doctype/bom/bom.py:1416 +#: erpnext/manufacturing/doctype/bom/bom.py:1432 msgid "BOM {0} must be submitted" msgstr "Sastavnica {0} se mora podnijeti" @@ -7276,15 +7305,15 @@ msgstr "Sastavnice Ažurirane" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:314 msgid "BOMs created successfully" -msgstr "Sastavnice su uspješno kreirane" +msgstr "Sastavnice su uspješno izrađene" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:325 msgid "BOMs creation failed" -msgstr "Kreiranje Sastavnica nije uspjelo" +msgstr "Izrada Sastavnica nije uspjelo" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:264 msgid "BOMs creation has been enqueued, kindly check the status after some time" -msgstr "Kreiranje Sastavnica je u redu, provjeri status nakon nekog vremena" +msgstr "Izrada Sastavnica je u redu, provjeri status nakon nekog vremena" #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.py:51 msgid "Backdated Entries Will Be Blocked" @@ -7368,7 +7397,7 @@ msgstr "Stanje u Osnovnoj Valuti" #: erpnext/stock/report/available_batch_report/available_batch_report.py:62 #: erpnext/stock/report/available_serial_no/available_serial_no.py:126 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:89 #: erpnext/stock/report/stock_balance/stock_balance.py:517 #: erpnext/stock/report/stock_ledger/stock_ledger.py:331 msgid "Balance Qty" @@ -7400,7 +7429,7 @@ msgstr "Serijski Broj Bilanse" #: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json #: erpnext/accounts/report/balance_sheet/balance_sheet.json #: erpnext/accounts/workspace/financial_reports/financial_reports.json -#: erpnext/public/js/financial_statements.js:327 +#: erpnext/public/js/financial_statements.js:352 #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Balance Sheet" @@ -7420,7 +7449,7 @@ msgstr "Završno Stanje Bilansa Stanja" msgid "Balance Sheet Summary" msgstr "Sažetak Bilansa Stanja" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:295 msgid "Balance Sheet requires {0} to be synced to DuckDB" msgstr "Bilansa Stanja zahtijeva da se {0} sinhronizira s DuckDB-om" @@ -7441,7 +7470,7 @@ msgid "Balance Type" msgstr "Tip Stanja" #: erpnext/stock/report/available_serial_no/available_serial_no.py:174 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:91 #: erpnext/stock/report/stock_balance/stock_balance.py:525 #: erpnext/stock/report/stock_ledger/stock_ledger.py:388 msgid "Balance Value" @@ -7472,7 +7501,6 @@ msgstr "Stanje prema bankovnom izvodu prije {0}" #. Label of the bank (Link) field in DocType 'Payment Request' #. Label of a Link in the Invoicing Workspace #. Option for the 'Salary Mode' (Select) field in DocType 'Employee' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/bank/bank.json #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -7486,7 +7514,6 @@ msgstr "Stanje prema bankovnom izvodu prije {0}" #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:95 #: erpnext/setup/doctype/employee/employee.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank" msgstr "Banka" @@ -7515,7 +7542,6 @@ msgstr "Bankovni Račun Broj." #. Label of the bank_account (Link) field in DocType 'Payment Order Reference' #. Label of the bank_account (Link) field in DocType 'Payment Request' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:141 #: banking/src/pages/BankStatementImporter.tsx:90 #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -7534,7 +7560,6 @@ msgstr "Bankovni Račun Broj." #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:16 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:16 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account" msgstr "Bankovni Račun" @@ -7570,16 +7595,12 @@ msgid "Bank Account No" msgstr "Bankovni Račun Broj" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account Subtype" msgstr "Podtip Bankovnog Računa" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_account_type/bank_account_type.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account Type" msgstr "Tip Bankovnog Računa" @@ -7592,7 +7613,9 @@ msgstr "Bankovni Račun {0} u Bankovnoj Transakciji {1} nije usklađen s Bankovn msgid "Bank Accounts" msgstr "Bankovni Računi" +#. Label of a chart in the Accounting Workspace #. Label of the bank_balance (Check) field in DocType 'Email Digest' +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/setup/doctype/email_digest/email_digest.json msgid "Bank Balance" msgstr "Bankovno Stanje" @@ -7612,14 +7635,12 @@ msgstr "Račun za Bankarske Naknade" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:35 msgid "Bank Charges, Salary, etc." -msgstr "Bankovne Provizije, Plata, itd." +msgstr "Bankovne Provizije, Plaća, itd." #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_clearance/bank_clearance.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Clearance" msgstr "Bankovno Odobrenje" @@ -7686,12 +7707,10 @@ msgstr "Tip Bankovnog Unosa" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:213 msgid "Bank Fee, Salary, etc." -msgstr "Bankarska Provizija, Plata, itd." +msgstr "Bankarska Provizija, Plaća, itd." #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Guarantee" msgstr "Bankarska Garancija" @@ -7719,11 +7738,6 @@ msgstr "Naziv Banke" msgid "Bank Overdraft Account" msgstr "Bankovni Račun Prekoračenja" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/banking.json -msgid "Bank Reconciliation" -msgstr "Bankovno Usklađivanje" - #. Name of a report #. Label of a Link in the Invoicing Workspace #: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:208 @@ -7843,7 +7857,7 @@ msgstr "Bankovnog računa zaduženja za uplate" #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:145 msgid "Bank account {0} already exists and could not be created again" -msgstr "Bankovni račun {0} već postoji i nije ga moguće ponovo kreirati" +msgstr "Bankovni račun {0} već postoji i nije ga moguće ponovo izraditi" #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:158 msgid "Bank accounts added" @@ -7855,7 +7869,7 @@ msgstr "Bankovni Izvod uvezen." #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:320 msgid "Bank transaction creation error" -msgstr "Greška u kreiranju bankovne transakcije" +msgstr "Greška u izradi bankovne transakcije" #. Label of the bank_cash_account (Link) field in DocType 'Process Payment #. Reconciliation' @@ -7869,19 +7883,15 @@ msgstr "Bankovni/Gotovinski Račun {0} ne pripada {1}" #. Label of the banking_section (Section Break) field in DocType 'Accounts #. Settings' -#. Name of a Workspace #. Label of a Card Break in the Invoicing Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar #: banking/src/pages/BankReconciliation.tsx:57 #: banking/src/pages/BankReconciliation.tsx:87 #: banking/src/pages/BankStatementImporterContainer.tsx:22 #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/workspace/banking/banking.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/desktop_icon/banking.json #: erpnext/setup/setup_wizard/data/industry_type.txt:8 -#: erpnext/workspace_sidebar/banking.json msgid "Banking" msgstr "Bankarstvo" @@ -7890,11 +7900,11 @@ msgstr "Bankarstvo" msgid "Barcode Type" msgstr "Barkod Tip" -#: erpnext/stock/doctype/item/item.py:547 +#: erpnext/stock/doctype/item/item.py:552 msgid "Barcode {0} already used in Item {1}" msgstr "Barkod {0} se već koristi za artikal {1}" -#: erpnext/stock/doctype/item/item.py:562 +#: erpnext/stock/doctype/item/item.py:567 msgid "Barcode {0} is not a valid {1} code" msgstr "Barkod {0} nije važeći {1} kod" @@ -7949,12 +7959,12 @@ msgstr "Osnovni Trošak po Jedinici" #. Label of the base_hour_rate (Currency) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Base Hour Rate(Company Currency)" -msgstr "Osnovna Cijena po Satu (Valuta Poduzeća)" +msgstr "Osnovna Cjena po Satu (Valuta Poduzeća)" #. Label of the base_rate (Currency) field in DocType 'BOM Creator Item' #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json msgid "Base Rate" -msgstr "Osnovna Cijena" +msgstr "Osnovna Cjena" #. Label of the withholding_amount (Currency) field in DocType 'Tax Withholding #. Entry' @@ -8008,7 +8018,7 @@ msgstr "Na osnovu Uslova Plaćanja" #. 'Subscription Plan' #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json msgid "Based On Price List" -msgstr "Na osnovu Cijenovnika" +msgstr "Na osnovu Cjenovnika" #. Label of the based_on_value (Dynamic Link) field in DocType 'Party Specific #. Item' @@ -8026,7 +8036,7 @@ msgstr "Na osnovu vaših pravila ljudskih resursa, odaberi datum završetka peri #: erpnext/setup/doctype/holiday_list/holiday_list.js:55 msgid "Based on your HR Policy, select your leave allocation period's start date" -msgstr "Na osnovu vaših pravila ljudskih resursa, odaberite datum početka perioda raspodjele odmora" +msgstr "Na osnovu vaših pravila ljudskih resursa, odaberi datum početka perioda raspodjele odmora" #. Label of the basic_amount (Currency) field in DocType 'Stock Entry Detail' #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json @@ -8038,18 +8048,18 @@ msgstr "Osnovni Iznos" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json msgid "Basic Rate (Company Currency)" -msgstr "Osnovna Cijena(Valuta Poduzeća)" +msgstr "Osnovna Cjena(Valuta Poduzeća)" #. Label of the basic_rate (Currency) field in DocType 'Stock Entry Detail' #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Basic Rate (as per Stock UOM)" -msgstr "Osnovna Cijena (prema Jedinici Zaliha)" +msgstr "Osnovna Cjena (prema Jedinici Zaliha)" #. Name of a DocType #. Label of a Link in the Stock Workspace #: erpnext/stock/doctype/batch/batch.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158 #: erpnext/stock/report/stock_ledger/stock_ledger.py:418 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:182 @@ -8133,7 +8143,7 @@ msgstr "Postavke Artikla Šarže" #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 #: erpnext/public/js/controllers/transaction.js:2989 -#: erpnext/public/js/utils/barcode_scanner.js:281 +#: erpnext/public/js/utils/barcode_scanner.js:286 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/item_price/item_price.json @@ -8163,11 +8173,11 @@ msgstr "Postavke Artikla Šarže" msgid "Batch No" msgstr "Broj Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1236 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1237 msgid "Batch No is mandatory" msgstr "Broj Šarže je obavezan" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3566 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3572 msgid "Batch No {0} does not exist" msgstr "Broj Šarže {0} ne postoji" @@ -8175,11 +8185,11 @@ msgstr "Broj Šarže {0} ne postoji" msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Broj Šarže {0} je povezan sa artiklom {1} koji ima serijski broj. Umjesto toga, skenirajte serijski broj." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:490 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:491 msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Broj Šarže {0} nije prisutan u originalnom {1} {2}, stoga ga ne možete vratiti naspram {1} {2}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:708 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:709 msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" msgstr "Broj Šarže {0} Artikla {1} ima negativnu količinu zaliha {2} u skladištu {3}" @@ -8194,9 +8204,9 @@ msgstr "Broj Šarže" msgid "Batch Nos" msgstr "Broj Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2080 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2081 msgid "Batch Nos are created successfully" -msgstr "Brojevi Šarže su uspješno kreirani" +msgstr "Brojevi Šarže su uspješno izrađeni" #: erpnext/controllers/sales_and_purchase_return.py:1203 msgid "Batch Not Available for Return" @@ -8248,9 +8258,9 @@ msgstr "Jedinica Šarže" msgid "Batch and Serial No" msgstr "Šarža i Serijski Broj" -#: erpnext/manufacturing/doctype/work_order/work_order.py:743 +#: erpnext/manufacturing/doctype/work_order/work_order.py:749 msgid "Batch not created for item {0} since it does not have a batch series." -msgstr "Šarža nije kreirana za artikal {0} jer nema Broj Šarže." +msgstr "Šarža nije izrađena za artikal {0} jer nema Broj Šarže." #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8325,7 +8335,7 @@ msgstr "Ispod je kista svih unosa knjiženih na bankovnom računu {0} koje do {1 #. Label of the bill_date (Date) field in DocType 'Journal Entry' #. Label of the bill_date (Date) field in DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1208 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210 #: erpnext/accounts/report/purchase_register/purchase_register.py:232 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Bill Date" @@ -8346,7 +8356,7 @@ msgstr "Fakturiši N dana prije početka perioda" #. Label of the bill_no (Data) field in DocType 'Journal Entry' #. Label of the bill_no (Data) field in DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1207 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1209 #: erpnext/accounts/report/purchase_register/purchase_register.py:231 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Bill No" @@ -8356,23 +8366,21 @@ msgstr "Broj Fakture" #. DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Bill for rejected quantity in Purchase Invoice" -msgstr "Faktura za odbijenu količinu na Kupovnoj Fakturi" +msgstr "Faktura za odbijenu količinu na Nabavnoj Fakturi" #. Label of a Card Break in the Manufacturing Workspace #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/bom/bom.py:1168 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/stock/doctype/material_request/material_request.js:139 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:796 +#: erpnext/stock/doctype/material_request/material_request.js:142 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:795 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Bill of Materials" msgstr "Sastavnica" #. Option for the 'Status' (Select) field in DocType 'Timesheet' -#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/controllers/website_list_for_contact.py:212 #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/doctype/timesheet/timesheet_list.js:9 msgid "Billed" @@ -8572,7 +8580,7 @@ msgstr "Period Fakturisanja" #: erpnext/projects/doctype/activity_cost/activity_cost.json #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json msgid "Billing Rate" -msgstr "Faktura Cijena" +msgstr "Faktura Cjena" #. Label of the billing_state (Data) field in DocType 'Tax Rule' #: erpnext/accounts/doctype/tax_rule/tax_rule.json @@ -8590,7 +8598,7 @@ msgstr "Faktura Status" msgid "Billing Zipcode" msgstr "Faktura Poštanski Broj" -#: erpnext/accounts/party.py:619 +#: erpnext/accounts/party.py:635 msgid "Billing currency must be equal to either default company's currency or party account currency" msgstr "Faktura Valuta mora biti jednaka ili standard valuti poduzeća ili valuti računa stranke" @@ -8713,7 +8721,7 @@ msgstr "Ugovorni Nalog Artikal" #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json msgid "Blanket Order Rate" -msgstr "Cijena po Ugovornom Nalogu" +msgstr "Cjena po Ugovornom Nalogu" #. Label of the blanket_order_section (Section Break) field in DocType 'Buying #. Settings' @@ -8736,10 +8744,16 @@ msgstr "Blokiraj Fakturu" msgid "Block Supplier" msgstr "Blokiraj Dostavljača" +#. Description of the 'Enable Overdue Billing Threshold' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Block submitting a new Sales Invoice when the customer's overdue amount exceeds the Overdue Billing Threshold set on the customer." +msgstr "" + #. Description of the 'Is Frozen' (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n" -msgstr "Blokira sve daljnje računovodstvene unose na računu ovog klijenta. Samo korisnici s ulogom zamrznutih unosa mogu to poništiti.\n" +msgstr "Blokira sve daljnje knjigovodstvene unose na računu ovog klijenta. Samo korisnici s ulogom zatvorenih unosa mogu to poništiti.\n" #. Description of the 'Disabled' (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json @@ -8756,7 +8770,7 @@ msgstr "Blog Pretplatnik" msgid "Blood Group" msgstr "Krvna Grupa" -#: erpnext/public/js/shop_floor/shop_floor.js:123 +#: erpnext/public/js/shop_floor/shop_floor.js:149 msgid "Board" msgstr "Tabla" @@ -8813,6 +8827,12 @@ msgstr "Automatski knjiži unos Amortizacije Imovine" msgid "Book Deferred entries based on" msgstr "Knjiži Odložene Unose Na Osnovu" +#. Label of the book_stock_expense_gl_entries (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Stock Expense GL Entries" +msgstr "" + #: erpnext/www/book_appointment/index.html:15 msgid "Book an appointment" msgstr "Zakaži Termin" @@ -8840,6 +8860,12 @@ msgstr "Rezervisano" msgid "Booked Fixed Asset" msgstr "Proknjižena Osnovna Imovina" +#. Description of the 'Book Stock Expense GL Entries' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Books Purchase Expense and Expenses Added To Stock account pairs against stock value. On enabling this, the accounts become mandatory in Company or Item Defaults for Purchase Receipt, Purchase Invoice, Stock Entry, Stock Reconciliation and Landed Cost Voucher" +msgstr "" + #: erpnext/accounts/services/gl_validator.py:143 msgid "Books have been closed until the period ending on {0}" msgstr "Knjigovodstvo je zatvoreno do perioda koji se završava {0}" @@ -8856,7 +8882,7 @@ msgstr "Račun Obaveza: {0} i Račun Predujma: {1} moraju biti u istoj valuti za #: erpnext/setup/doctype/customer_group/customer_group.py:62 msgid "Both Receivable Account: {0} and Advance Account: {1} must be of same currency for company: {2}" -msgstr "Račun Prihoda: {0} i Račun Predujma: {1} moraju biti u istoj valuti za kompaniju: {2}" +msgstr "Račun Prihoda: {0} i Račun Predujma: {1} moraju biti u istoj valuti za poduzeće: {2}" #: erpnext/accounts/doctype/subscription/subscription.py:415 msgid "Both Trial Period Start Date and Trial Period End Date must be set" @@ -8876,12 +8902,10 @@ msgstr "Kutija" #. Label of the branch (Data) field in DocType 'Branch' #. Label of the branch (Link) field in DocType 'Employee' #. Label of the branch (Link) field in DocType 'Employee Internal Work History' -#. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/sms_center/sms_center.json #: erpnext/setup/doctype/branch/branch.json #: erpnext/setup/doctype/employee/employee.json #: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json -#: erpnext/workspace_sidebar/organization.json msgid "Branch" msgstr "Podružnica" @@ -8969,7 +8993,6 @@ msgstr "Veličina Spremnika" #. Name of a DocType #. Label of a Link in the Invoicing Workspace #. Label of a Desktop Icon -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/budget/budget.json #: erpnext/accounts/doctype/cost_center/cost_center.js:45 @@ -8980,9 +9003,9 @@ msgstr "Veličina Spremnika" #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:237 #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:319 #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:329 -#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:454 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/desktop_icon/budget.json erpnext/workspace_sidebar/budgeting.json +#: erpnext/desktop_icon/budget.json msgid "Budget" msgstr "Proračun" @@ -9050,8 +9073,8 @@ msgstr "Proračunska Lista" msgid "Budget Start Date" msgstr "Datum Početka Proračuna" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/budgeting.json +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json msgid "Budget Variance" msgstr "Odstupanje Proračuna" @@ -9071,13 +9094,6 @@ msgstr "Proračun se ne može dodijeliti naspram Grupnog Računu {0}" msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "Proračun se ne može dodijeliti za {0}, jer njegova kontna Klasa nije Prihod ili Rashod" -#. Name of a Workspace -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/budgeting/budgeting.json -#: erpnext/workspace_sidebar/budgeting.json -msgid "Budgeting" -msgstr "Proračun" - #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" msgstr "Proračuni" @@ -9194,7 +9210,7 @@ msgstr "Nabava & Prodaja" #. Description of a DocType #: erpnext/selling/doctype/customer/customer.json msgid "Buyer of Goods and Services." -msgstr "Kupac Proizvoda i Usluga." +msgstr "Klijent Proizvoda i Usluga." #. Label of the buying (Check) field in DocType 'Pricing Rule' #. Label of the buying (Check) field in DocType 'Promotional Scheme' @@ -9228,7 +9244,7 @@ msgstr "Nabava" msgid "Buying & Selling Settings" msgstr "Postavke Nabave & Prodaje" -#: erpnext/accounts/report/gross_profit/gross_profit.py:368 +#: erpnext/accounts/report/gross_profit/gross_profit.py:370 msgid "Buying Amount" msgstr "Nabavni Iznos" @@ -9241,7 +9257,7 @@ msgstr "Centar Troškova Nabave" #: erpnext/stock/report/item_price_stock/item_price_stock.py:40 msgid "Buying Price List" -msgstr "Nabavni Cijenovnik" +msgstr "Nabavni Cjenovnik" #: erpnext/stock/report/item_price_stock/item_price_stock.py:46 msgid "Buying Rate" @@ -9268,7 +9284,7 @@ msgstr "Postavke Nabave" msgid "Buying and Selling" msgstr "Nabava & Prodaja" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:219 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:237 msgid "Buying must be checked, if Applicable For is selected as {0}" msgstr "Nabava se mora provjeriti ako je Primjenjivo za odabrano kao {0}" @@ -9307,11 +9323,6 @@ msgstr "Zaobiđi provjeru kreditnog ograničenja na prodajnom nalogu" msgid "CC To" msgstr "Kopija" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "COA Importer" -msgstr "Kontni Plan Uvoz" - #. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' #: erpnext/stock/doctype/item_barcode/item_barcode.json msgid "CODE-39" @@ -9329,7 +9340,7 @@ msgstr "Račun Troškova Prodanih Artikala" msgid "COGS By Item Group" msgstr "Troškovi izrade prema Arikal Grupi" -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:44 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:55 msgid "COGS Debit" msgstr "Troškovi izrade Debit" @@ -9408,7 +9419,7 @@ msgstr "Izračunaj procijenjeno vrijeme dolaska" #. Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Calculate Product Bundle price based on child Item's rates" -msgstr "Obračunaj Cijenu Paketa Artikala na osnovu cijena Podređenih Artikala" +msgstr "Obračunaj Cjenu Paketa Artikala na osnovu cjena Podređenih Artikala" #. Description of the 'Hidden Line (Internal Use Only)' (Check) field in #. DocType 'Financial Report Row' @@ -9616,7 +9627,7 @@ msgstr "Kampanja {0} nije pronađena" msgid "Can be approved by {0}" msgstr "Može biti odobreno od {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1176 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Ne mogu zatvoriti Radni Nalog. Budući da su {0} Kartice Poslova u stanju Radovi u Toku." @@ -9645,7 +9656,7 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Ne može se filtrirati na osnovu broja verifikata, ako je grupiran prema verifikatu" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2615 msgid "Can only make payment against unbilled {0}" msgstr "Plaćanje se može izvršiti samo protiv nefakturisanog(e) {0}" @@ -9655,7 +9666,7 @@ msgstr "Plaćanje se može izvršiti samo protiv nefakturisanog(e) {0}" msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Može upućivati na red samo ako je tip naplate \"Na iznos prethodnog reda\" ili \"Ukupni prethodni red\"" -#: erpnext/setup/doctype/company/company.py:278 +#: erpnext/setup/doctype/company/company.py:280 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Ne može se promijeniti način vrijednovanja, jer postoje transakcije naspram nekih artikala koji nemaju svoj metod vrijednovanja" @@ -9699,23 +9710,23 @@ msgstr "Otkazani Radni Nalog ne može se obraditi." msgid "Cannot Assign Cashier" msgstr "Ne može se dodijeliti Blagajnik/ca" -#: erpnext/setup/doctype/company/company.py:297 +#: erpnext/setup/doctype/company/company.py:299 msgid "Cannot Change Inventory Account Setting" msgstr "Nije moguće promijeniti Postavke Računa Inventara" #: erpnext/controllers/sales_and_purchase_return.py:445 msgid "Cannot Create Return" -msgstr "Nije moguće Kreirati Povrat" +msgstr "Nije moguće izraditi Povrat" -#: erpnext/stock/doctype/item/item.py:690 -#: erpnext/stock/doctype/item/item.py:703 -#: erpnext/stock/doctype/item/item.py:719 +#: erpnext/stock/doctype/item/item.py:695 +#: erpnext/stock/doctype/item/item.py:708 +#: erpnext/stock/doctype/item/item.py:724 msgid "Cannot Merge" msgstr "Nije moguće spojiti" #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" -msgstr "Nije moguće razriješiti Personal" +msgstr "Nije moguće Razriješiti Osoblje" #: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:71 msgid "Cannot Resubmit Ledger entries for vouchers in Closed fiscal year." @@ -9727,15 +9738,15 @@ msgstr "Nije moguće dodati podređenu tabelu {0} na listu za brisanje. Podređe #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:226 msgid "Cannot amend {0} {1}, please create a new one instead." -msgstr "Nije moguće izmijeniti {0} {1}, umjesto toga kreirajte novi." +msgstr "Nije moguće izmijeniti {0} {1}, umjesto toga izradi novi." #: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:1300 msgid "Cannot apply TDS against multiple parties in one entry" msgstr "Ne može se primijeniti TDS naspram više strana u jednom unosu" -#: erpnext/stock/doctype/item/item.py:380 +#: erpnext/stock/doctype/item/item.py:385 msgid "Cannot be a fixed asset item as Stock Ledger is created." -msgstr "Ne može biti artikal fiksne imovine jer je kreiran Registar Zaliha." +msgstr "Ne može biti artikal fiksne imovine jer je izrađen Registar Zaliha." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 #: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 @@ -9754,15 +9765,15 @@ msgstr "Ne može se otkazati Unos Zatvaranja Kase" msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "Ne može se otkazati Unos Rezervacije Zaliha {0}, jer je korišten u radnom nalogu {1}. Molimo prvo otkazati radni nalog ili otkloniti rezervaciju zaliha" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:283 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Nije moguće otkazati jer je obrada otkazanih dokumenata na čekanju." -#: erpnext/manufacturing/doctype/work_order/work_order.py:851 +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}" -#: erpnext/stock/stock_ledger.py:226 +#: erpnext/stock/stock_ledger.py:230 msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Nije moguće otkazati transakciju. Ponovno knjiženje procjene vrijednosti artikla prilikom podnošenja još nije završeno." @@ -9774,7 +9785,7 @@ msgstr "Nije moguće otkazati ovaj Unos Proizvodnih Zaliha jer količina proizve msgid "Cannot cancel this document as it is linked with the submitted Asset Value Adjustment {0}. Please cancel the Asset Value Adjustment to continue." msgstr "Ne može se poništiti ovaj dokument jer je povezan s podnesenim Prilagođavanjem Vrijednosti Imovine {0}. Poništi Prilagođavanje Vrijednosti Imovine da biste nastavili." -#: erpnext/controllers/buying_controller.py:1145 +#: erpnext/controllers/buying_controller.py:1153 msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Ne može se poništiti ovaj dokument jer je povezan sa dostavljenom imovinom {asset_link}. Otkaži imovinu da nastavite." @@ -9782,11 +9793,11 @@ msgstr "Ne može se poništiti ovaj dokument jer je povezan sa dostavljenom imov msgid "Cannot cancel transaction for Completed Work Order." msgstr "Nije moguće otkazati transakciju za Završeni Radni Nalog." -#: erpnext/stock/doctype/item/item.py:986 +#: erpnext/stock/doctype/item/item.py:991 msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item" msgstr "Nije moguće promijeniti atribute nakon transakcije zaliha. Napravi novi artikal i prebaci zalihe na novi artikal" -#: erpnext/stock/doctype/item/item.py:1147 +#: erpnext/stock/doctype/item/item.py:1152 msgid "Cannot change Item {0} from serialized to non-serialized because a Serial and Batch Bundle exists for it. Please delete or cancel the Serial and Batch Bundle first." msgstr "Nije moguće promijenuti artikal {0} iz serijaliziranog u neserijalizirani jer za njega postoji Serijski i Šaržni paket. Prvo izbrišite ili otkažite Serijski i Šaržni paket." @@ -9798,11 +9809,11 @@ msgstr "Nije moguće promijeniti tip referentnog dokumenta." msgid "Cannot change Service Stop Date for item in row {0}" msgstr "Nije moguće promijeniti datum zaustavljanja servisa za artikal u redu {0}" -#: erpnext/stock/doctype/item/item.py:977 +#: erpnext/stock/doctype/item/item.py:982 msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this." msgstr "Ne mogu promijeniti svojstva varijante nakon transakcije zaliha. Morat ćete napraviti novi artikal da biste to učinili." -#: erpnext/setup/doctype/company/company.py:403 +#: erpnext/setup/doctype/company/company.py:405 msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency." msgstr "Nije moguće promijeniti standard valutu poduzeća, jer postoje postojeće transakcije. Transakcije se moraju otkazati da bi se promijenila standard valuta." @@ -9814,7 +9825,7 @@ msgstr "Ne može završiti zadatak {0} jer njegov zavisni zadatak {1} nije dovr msgid "Cannot convert Cost Center to ledger as it has child nodes" msgstr "Nije moguće pretvoriti Centar Troškova u Registar jer ima podređene članove" -#: erpnext/projects/doctype/task/task.js:49 +#: erpnext/projects/doctype/task/task.js:55 msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}." msgstr "Nije moguće pretvoriti Zadatak u negrupni jer postoje sljedeći podređeni Zadaci: {0}." @@ -9828,20 +9839,24 @@ msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa." #: erpnext/accounts/doctype/sales_invoice/mapper.py:277 msgid "Cannot create Intercompany {0}. All items in the source {1} have already been fully invoiced. Please check the existing linked {2}s." -msgstr "Nije moguće kreirati {0} između poduzeća. Svi početni artikli {1} su već u potpunosti fakturisani. Provjeri postojeće povezane {2}." +msgstr "Nije moguće izraditi {0} između poduzeća. Svi početni artikli {1} su već u potpunosti fakturisani. Provjeri postojeće povezane {2}." + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:103 +msgid "Cannot create Material Request for item {0} in group warehouse {1}." +msgstr "Nije moguće izraditi Materijalni Zahtjev za artikal {0} u grupnom skladištu {1}." #: erpnext/stock/doctype/purchase_receipt/services/reservation.py:49 msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." -msgstr "Nije moguće kreirati Unose Rezervisanja Zaliha za buduće datume Nabavnih Računa." +msgstr "Nije moguće izraditi Unose Rezervisanja Zaliha za buduće datume Nabavnih Računa." #: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:258 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." -msgstr "Nije moguće kreirati Listu Odabira za Prodajni Nalog {0} jer ima rezervisane zalihe. Poništi rezervacije zaliha kako biste kreirali Listu Odabira." +msgstr "Nije moguće izraditi Listu Odabira za Prodajni Nalog {0} jer ima rezervisane zalihe. Poništi rezervacije zaliha kako biste izradili Listu Odabira." #: erpnext/accounts/services/gl_validator.py:34 msgid "Cannot create accounting entries against disabled accounts: {0}" -msgstr "Nije moguće kreirati knjigovodstvene unose naspram onemogućenih računa: {0}" +msgstr "Nije moguće izraditi knjigovodstvene unose naspram onemogućenih računa: {0}" #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." @@ -9849,7 +9864,7 @@ msgstr "Ne može se stvoriti više Podugovornih Naloga na osnovu Naloga Nabave { #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." -msgstr "Nije moguće kreirati povrat za konsolidovanu fakturu {0}." +msgstr "Nije moguće izraditi povrat za konsolidovanu fakturu {0}." #: erpnext/manufacturing/doctype/bom/bom.py:912 msgid "Cannot deactivate or cancel BOM as it is linked with other BOMs" @@ -9889,7 +9904,7 @@ msgstr "Nije moguće izbrisati virtuelni DocType: {0}. Virtuelni DocTypes nemaju msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch." msgstr "Nije moguće onemogućiti serijski i šaržni broj za artikal, jer već postoje zapisi za serijski broj/šaržu." -#: erpnext/setup/doctype/company/company.py:629 +#: erpnext/setup/doctype/company/company.py:631 msgid "Cannot disable perpetual inventory, as there are existing Stock Ledger Entries for the company {0}. Please cancel the stock transactions first and try again." msgstr "Ne može se onemogućiti trajna inventura, jer postoje postojeći unosi u glavnu knjigu zaliha za {0}. Molimo vas da prvo otkažete transakcije zaliha i pokušate ponovo." @@ -9897,7 +9912,7 @@ msgstr "Ne može se onemogućiti trajna inventura, jer postoje postojeći unosi msgid "Cannot disable {0} as it may lead to incorrect stock valuation." msgstr "Ne može se onemogućiti {0} jer to može dovesti do netačne procjene vrijednosti zaliha." -#: erpnext/manufacturing/doctype/work_order/services/status.py:254 +#: erpnext/manufacturing/doctype/work_order/services/status.py:263 msgid "Cannot disassemble more than produced quantity." msgstr "Ne može se demontirati više od proizvedene količine." @@ -9905,13 +9920,13 @@ msgstr "Ne može se demontirati više od proizvedene količine." msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble." msgstr "Ne može se rastaviti {0} količina u odnosu na unos na zalihi {1}. Samo {2} količina dostupna za rastavljanje." -#: erpnext/setup/doctype/company/company.py:294 +#: erpnext/setup/doctype/company/company.py:296 msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Nije moguće omogućiti račun zaliha po artiklima, jer postoje postojeći unosi u glavnu knjigu zaliha za {0} sa računom zaliha po skladištu. Molimo vas da prvo otkažete transakcije zaliha i pokušate ponovo." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:45 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." -msgstr "Nije moguće omogućiti kreiranje prilike iz kontakta jer je kontakt obrazac onemogućen." +msgstr "Nije moguće omogućiti izradu prilike iz kontakta jer je kontakt obrazac onemogućen." #: erpnext/selling/doctype/sales_order/sales_order.py:624 #: erpnext/selling/doctype/sales_order/sales_order.py:647 @@ -9922,19 +9937,19 @@ msgstr "Nije moguće osigurati dostavu serijskim brojem jer je artikal {0} dodan msgid "Cannot fetch selected rows for submitted Payment Request" msgstr "Nije moguće preuzeti odabrane redove za podnešeni zahtjev za plaćanje" -#: erpnext/public/js/utils/barcode_scanner.js:62 +#: erpnext/public/js/utils/barcode_scanner.js:67 msgid "Cannot find Item or Warehouse with this Barcode" msgstr "Ne mogu pronaći Artikal ili Skladište s ovim Barkodom" -#: erpnext/public/js/utils/barcode_scanner.js:63 +#: erpnext/public/js/utils/barcode_scanner.js:68 msgid "Cannot find Item with this Barcode" msgstr "Ne mogu pronaći artikal s ovim Barkodom" #: erpnext/accounts/services/child_item_update.py:356 msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." -msgstr "Ne može se pronaći zadano skladište za artikal {0}. Molimo vas da postavite jedan u Postavke Artikla ili u Postavke Zaliha." +msgstr "Ne može se pronaći standard skladište za artikal {0}. Molimo vas da postavi jedan u Postavke Artikla ili u Postavke Zaliha." -#: erpnext/accounts/party.py:1100 +#: erpnext/accounts/party.py:1116 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće knjigovodstvene unose u različitim valutama za '{3}'." @@ -9950,11 +9965,11 @@ msgstr "Ne može se knjižiti arikal Standardnog Troška {0} na {1}: jer je prij msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Ne može se proizvesti više artikala {0} od količine Prodajnog Naloga {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:904 +#: erpnext/manufacturing/doctype/work_order/work_order.py:910 msgid "Cannot produce more item for {0}" msgstr "Ne može se proizvesti više artikala za {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:908 +#: erpnext/manufacturing/doctype/work_order/work_order.py:914 msgid "Cannot produce more than {0} items for {1}" msgstr "Ne može se proizvesti više od {0} artikla za {1}" @@ -9978,13 +9993,13 @@ msgstr "Ne može se rezervisati više od Dozvoljene Količine {0} {1} za artikal #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" -msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik grešaka za više informacija" +msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjeri zapisnik grešaka za više informacija" #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:68 msgid "Cannot retrieve link token. Check Error Log for more information" -msgstr "Nije moguće preuzeti oznaku veze. Provjerite zapisnik grešaka za više informacija" +msgstr "Nije moguće preuzeti oznaku veze. Provjeri zapisnik grešaka za više informacija" -#: erpnext/selling/doctype/customer/customer.py:371 +#: erpnext/selling/doctype/customer/customer.py:385 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Nije moguće odabrati tip grupe \"Klijent Grupa\". Odaberi klijent grupu koja nije grupa." @@ -10009,7 +10024,7 @@ msgstr "Ne može se postaviti kao Izgubljeno pošto je Prodajni Nalog napravljen msgid "Cannot set authorization on basis of Discount for {0}" msgstr "Nije moguće postaviti autorizaciju na osnovu Popusta za {0}" -#: erpnext/stock/doctype/item/item.py:777 +#: erpnext/stock/doctype/item/item.py:782 msgid "Cannot set multiple Item Defaults for a company." msgstr "Nije moguće postaviti više Standard Artikal Postavki za poduzeće." @@ -10039,7 +10054,7 @@ msgstr "Nije moguće podnijeti Radni Nalog {0} dok je na čekanju. Nastavi i zav #: erpnext/accounts/services/child_item_update.py:283 msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation" -msgstr "Nije moguće ažurirati cijenu jer je artikal {0} već naručen ili nabavljen po ovoj ponudi" +msgstr "Nije moguće ažurirati cjenu jer je artikal {0} već naručen ili nabavljen po ovoj ponudi" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1677 msgid "Cannot {0} from {1} without any negative outstanding invoice" @@ -10080,7 +10095,7 @@ msgstr "Greška Planiranja Kapaciteta, planirano vrijeme početka ne može biti msgid "Capacity Planning For (Days)" msgstr "Planiranje Kapaciteta za (Dana)" -#: erpnext/public/js/shop_floor/shop_floor.js:662 +#: erpnext/public/js/shop_floor/shop_floor.js:698 msgid "Capacity Reached" msgstr "Kapacitet Dostignut" @@ -10118,7 +10133,7 @@ msgstr "Račun Kapitalnih Radova u Toku" msgid "Capital Work in Progress" msgstr "Kapitalni Radovi u Toku" -#: erpnext/assets/doctype/asset/asset.js:228 +#: erpnext/assets/doctype/asset/asset.js:236 msgid "Capitalize Asset" msgstr "Kapitalizacija Imovine" @@ -10127,7 +10142,7 @@ msgstr "Kapitalizacija Imovine" msgid "Capitalize Repair Cost" msgstr "Kapitaliziraj Troškove Popravke" -#: erpnext/assets/doctype/asset/asset.js:226 +#: erpnext/assets/doctype/asset/asset.js:234 msgid "Capitalize this asset before submitting." msgstr "Aktiviraj imovinu prije podnošenja." @@ -10201,19 +10216,19 @@ msgstr "Unos Gotovine" msgid "Cash Flow" msgstr "Novčani Tok" -#: erpnext/public/js/financial_statements.js:359 +#: erpnext/public/js/financial_statements.js:384 msgid "Cash Flow Statement" msgstr "Novčani Tok Izvještaj" -#: erpnext/accounts/report/cash_flow/cash_flow.py:187 +#: erpnext/accounts/report/cash_flow/cash_flow.py:203 msgid "Cash Flow from Financing" msgstr "Novčani Tok od Finansiranja" -#: erpnext/accounts/report/cash_flow/cash_flow.py:180 +#: erpnext/accounts/report/cash_flow/cash_flow.py:196 msgid "Cash Flow from Investing" msgstr "Novčani Tok od Ulaganja" -#: erpnext/accounts/report/cash_flow/cash_flow.py:168 +#: erpnext/accounts/report/cash_flow/cash_flow.py:184 msgid "Cash Flow from Operations" msgstr "Novčani tok od Poslovanja" @@ -10312,18 +10327,14 @@ msgstr "Kategoriziraj po Verifikatu (Konsolidovano)" msgid "Category Details" msgstr "Detalji o Kategoriji" -#: erpnext/assets/dashboard_fixtures.py:93 -msgid "Category-wise Asset Value" -msgstr "Vrijednost Imovine po Kategorijama" - -#: erpnext/buying/doctype/purchase_order/purchase_order.py:289 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:290 #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:140 msgid "Caution" msgstr "Oprez" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:210 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:218 msgid "Caution: This might alter frozen accounts." -msgstr "Oprez: Ovo može promijeniti zamrznute račune." +msgstr "Oprez: Ovo može promijeniti zatvorene račune." #. Label of the cell_number (Data) field in DocType 'Driver' #: erpnext/setup/doctype/driver/driver.json @@ -10421,17 +10432,17 @@ msgstr "Promijeni Datum Izdanja" msgid "Change in Stock Value" msgstr "Promjena Vrijednosti Zaliha" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:773 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:779 msgid "Change the account type to Receivable or select a different account." -msgstr "Promijenite vrstu računa u Potraživanje ili odaberite drugi račun." +msgstr "Promijenite vrstu računa u Potraživanje ili odaberi drugi račun." #. Description of the 'Last Integration Date' (Date) field in DocType 'Bank #. Account' #: erpnext/accounts/doctype/bank_account/bank_account.json msgid "Change this date manually to setup the next synchronization start date" -msgstr "Ručno promijenite ovaj datum da postavite sljedeći datum početka sinhronizacije" +msgstr "Ručno promijenite ovaj datum da postavi sljedeći datum početka sinhronizacije" -#: erpnext/selling/doctype/customer/customer.py:161 +#: erpnext/selling/doctype/customer/customer.py:168 msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "Ime klijenta je promijenjeno u '{0}' jer '{1}' već postoji." @@ -10439,7 +10450,7 @@ msgstr "Ime klijenta je promijenjeno u '{0}' jer '{1}' već postoji." msgid "Changes in {0}" msgstr "Promjene u {0}" -#: erpnext/stock/doctype/item/item.js:447 +#: erpnext/stock/doctype/item/item.js:462 msgid "Changing Customer Group for the selected Customer is not allowed." msgstr "Promjena Grupe Klijenta za odabranog Klijenta nije dozvoljena." @@ -10449,7 +10460,7 @@ msgstr "Promjena Grupe Klijenta za odabranog Klijenta nije dozvoljena." msgid "Changing the account in any transaction of the DocTypes listed below will trigger a repost. To prevent reposting, remove the relevant DocType from the list." msgstr "Promjena računa u bilo kojoj transakciji DocType navedenih u nastavku će pokrenuti ponovno knjiženje. Da biste spriječili ponovno knjiženje, uklonite relevantni DocType sa liste." -#: erpnext/stock/doctype/item/item.js:34 +#: erpnext/stock/doctype/item/item.js:36 msgid "Changing the valuation method to Moving Average will affect new transactions. If backdated entries are added, earlier FIFO-based entries will be reposted, which may change closing balances." msgstr "Promjena metode vrednovanja na MA uticat će na nove transakcije. Ako se dodaju retroaktivni unosi, raniji unosi zasnovani na FIFO metodi će biti ponovo knjiženi, što može promijeniti završna stanja." @@ -10462,7 +10473,7 @@ msgstr "Partner" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1995 #: erpnext/accounts/services/taxes.py:309 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" -msgstr "Naknada tipa 'Stvarni' u redu {0} ne može se uključiti u Cijenu Artikla ili Plaćeni Iznos" +msgstr "Naknada tipa 'Stvarni' u redu {0} ne može se uključiti u Cjenu Artikla ili Plaćeni Iznos" #. Option for the 'Account Type' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json @@ -10486,7 +10497,7 @@ msgstr "Naknade će biti raspoređene proporcionalno na osnovu količine ili izn #. Label of the chart_of_accounts (Select) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Chart Of Accounts Template" -msgstr "Šablon Kontnog Plana" +msgstr "Predložak Kontnog Plana" #. Label of the chart_preview (Section Break) field in DocType 'Chart of #. Accounts Importer' @@ -10514,7 +10525,6 @@ msgstr "Stablo Kontnog Plana" #: erpnext/setup/doctype/company/company.js:139 #: erpnext/setup/doctype/company/company.json #: erpnext/setup/workspace/home/home.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/invoicing.json msgid "Chart of Accounts" msgstr "Kontni Plan" @@ -10529,11 +10539,9 @@ msgid "Chart of Accounts Importer" msgstr "Kontni Plan Uvoz" #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account_tree.js:191 #: erpnext/accounts/doctype/cost_center/cost_center.js:41 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Chart of Cost Centers" msgstr "Stablo Centara Troškova" @@ -10555,18 +10563,18 @@ msgstr "Provjeri Dostupnost u Skladištu" #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Check Supplier invoice number uniqueness" -msgstr "Provjerite jedinstvenost Broja Fakture Dobavljača" +msgstr "Provjeri jedinstvenost Broja Fakture Dobavljača" #. Description of the 'Is Container' (Check) field in DocType 'Location' #: erpnext/assets/doctype/location/location.json msgid "Check if it is a hydroponic unit" -msgstr "Provjerite je li to hidroponska jedinica" +msgstr "Provjeri je li to hidroponska jedinica" #. Description of the 'Skip Material Transfer to WIP Warehouse' (Check) field #. in DocType 'Work Order' #: erpnext/manufacturing/doctype/work_order/work_order.json msgid "Check if material transfer entry is not required" -msgstr "Provjerite nije li potreban unos prijenosa materijala" +msgstr "Provjeri nije li potreban unos prijenosa materijala" #. Description of the 'Not Applicable' (Check) field in DocType 'Item Tax #. Template Detail' @@ -10577,7 +10585,7 @@ msgstr "Aktiviraj ako se ovaj PDV ne primjenjuje na artikle (različit od 0% sto #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:72 msgid "Check row {0} for account {1}: Party Type is only allowed for Receivable or Payable accounts" -msgstr "Provjerite red {0} za račun {1}: Tip stranke je dozvoljena samo za račune potraživanja ili obaveza" +msgstr "Provjeri red {0} za račun {1}: Tip stranke je dozvoljena samo za račune potraživanja ili obaveza" #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:79 msgid "Check row {0} for account {1}: Party is only allowed if Party Type is set" @@ -10640,7 +10648,7 @@ msgstr "Broj Čeka" #. Name of a DocType #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "Cheque Print Template" -msgstr "Šablon Ispisa Čeka" +msgstr "Predložak Ispisa Čeka" #. Label of the cheque_size (Select) field in DocType 'Cheque Print Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json @@ -10727,7 +10735,7 @@ msgstr "Podređeni Zadatak postoji za ovaj Zadatak. Ne možete izbrisati ovaj Za #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" -msgstr "Podređeni članovi se mogu kreirati samo pod članovima tipa 'Grupa'" +msgstr "Podređeni članovi se mogu izraditi samo pod članovima tipa 'Grupa'" #. Description of the 'Child DocTypes' (Small Text) field in DocType #. 'Transaction Deletion Record To Delete' @@ -10775,7 +10783,7 @@ msgstr "Klasificiraj tip tržišta kojem ovaj klijent pripada, koristi se za ana msgid "Clauses and Conditions" msgstr "Klauzule i Uslovi" -#: erpnext/public/js/utils/barcode_scanner.js:493 +#: erpnext/public/js/utils/barcode_scanner.js:502 msgid "Clear Last Scanned Warehouse" msgstr "Obriši posljednje skenirano skladište" @@ -10841,7 +10849,7 @@ msgstr "Obrađeno" msgid "Clearing Demo Data..." msgstr "Brisanje Demo Podataka..." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:720 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:747 msgid "Click on 'Get Finished Goods for Manufacture' to fetch the items from the above Sales Orders. Items only for which a BOM is present will be fetched." msgstr "Kliknite na 'Preuzmite Gotov Artikal za Proizvodnju' da preuzmete artikle iz gornjih Prodajnih Naloga. Preuzet će se samo artikli za koje postoji Sastavnica." @@ -10849,7 +10857,7 @@ msgstr "Kliknite na 'Preuzmite Gotov Artikal za Proizvodnju' da preuzmete artikl msgid "Click on Add to Holidays. This will populate the holidays table with all the dates that fall on the selected weekly off. Repeat the process for populating the dates for all your weekly holidays" msgstr "Kliknite na Dodaj Praznicima. Ovo će popuniti tabelu praznika sa svim datumima koji padaju na odabrani slobodan sedmični dan. Ponovite postupak za popunjavanje datuma za sve vaše sedmićne praznike" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:715 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:742 msgid "Click on Get Sales Orders to fetch sales orders based on the above filters." msgstr "Kliknite na Preuzmi Prodajne Naloge da preuzmete prodajne naloge na osnovu gornjih filtera." @@ -10883,7 +10891,7 @@ msgstr "Kliknite da biste postavili završno stanje prema izvodu" #: banking/src/components/features/BankStatementImporter/RawTableGrid.tsx:137 msgid "Click to set this as the header row." -msgstr "Kliknite da ovo postavite kao red zaglavlja." +msgstr "Kliknite da ovo postavi kao red zaglavlja." #. Label of the close_issue_after_days (Int) field in DocType 'Support #. Settings' @@ -10901,7 +10909,7 @@ msgstr "Zatvori Zajam" msgid "Close Replied Opportunity After Days" msgstr "Zatvori Odgovor na Priliku nakon dana" -#: erpnext/public/js/shop_floor/shop_floor.js:1375 +#: erpnext/public/js/shop_floor/shop_floor.js:1410 msgid "Close detail / blur search" msgstr "Zatvori detalj / zamuti pretragu" @@ -10919,7 +10927,7 @@ msgstr "Zatvoreni Dokument" msgid "Closed Documents" msgstr "Zatvoreni Dokumenti" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1126 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1132 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Zatvoreni Radni Nalog se ne može zaustaviti ili ponovo otvoriti" @@ -11121,7 +11129,7 @@ msgstr "Kolona u Bankovnoj datoteci" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:52 msgid "Columns are not according to template. Please compare the uploaded file with standard template" -msgstr "Kolone nisu prema šablonu. Molimo uporedite otpremljenu datoteku sa standardnim šablonom" +msgstr "Kolone nisu prema predlošku. Molimo uporedite otpremljenu datoteku sa standardnim predloškom" #: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:39 msgid "Combined invoice portion must equal 100%" @@ -11354,6 +11362,7 @@ msgstr "Poduzeća" #. Label of the company (Link) field in DocType 'Vehicle' #. Label of a Link in the Home Workspace #. Label of the company (Link) field in DocType 'Bin' +#. Label of the company (Link) field in DocType 'Company Restriction' #. Label of the company (Link) field in DocType 'Delivery Note' #. Label of the company (Link) field in DocType 'Delivery Trip' #. Label of the company (Link) field in DocType 'Item Default' @@ -11383,7 +11392,6 @@ msgstr "Poduzeća" #. Label of the company (Link) field in DocType 'Subcontracting Receipt' #. Label of the company (Link) field in DocType 'Issue' #. Label of the company (Link) field in DocType 'Warranty Claim' -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:82 #: banking/src/pages/BankStatementImporter.tsx:84 #: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.js:8 @@ -11572,7 +11580,7 @@ msgstr "Poduzeća" #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/report/project_summary/project_summary.js:8 #: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:45 -#: erpnext/public/js/financial_statements.js:381 +#: erpnext/public/js/financial_statements.js:418 #: erpnext/public/js/purchase_trends_filters.js:8 #: erpnext/public/js/sales_trends_filters.js:51 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json @@ -11623,9 +11631,10 @@ msgstr "Poduzeća" #: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8 #: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8 #: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/company_restriction/company_restriction.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.js:936 +#: erpnext/stock/doctype/item/item.js:957 #: erpnext/stock/doctype/item_default/item_default.json #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json @@ -11691,8 +11700,6 @@ msgstr "Poduzeća" #: erpnext/support/doctype/warranty_claim/warranty_claim.json #: erpnext/support/report/issue_analytics/issue_analytics.js:8 #: erpnext/support/report/issue_summary/issue_summary.js:8 -#: erpnext/workspace_sidebar/accounts_setup.json -#: erpnext/workspace_sidebar/organization.json msgid "Company" msgstr "Poduzeće" @@ -11761,11 +11768,11 @@ msgstr "Prikaz Adrese Poduzeća" msgid "Company Address Name" msgstr "Naziv Adrese Poduzeća" -#: erpnext/controllers/accounts_controller.py:1704 +#: erpnext/controllers/accounts_controller.py:1631 msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager." -msgstr "Nedostaje adresa poduzeća. Nemate dozvolu kreiranje adrese. Kontaktiraj Odgovornog Sistema." +msgstr "Nedostaje adresa poduzeća. Nemate dozvolu izradu adrese. Kontaktiraj Odgovornog Sistema." -#: erpnext/controllers/accounts_controller.py:1692 +#: erpnext/controllers/accounts_controller.py:1619 msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager." msgstr "Nedostaje adresa poduzeća. Nemate dozvolu da je ažurirate. Kontaktiraj Odgovornog Sistema." @@ -11851,6 +11858,23 @@ msgstr "Naziv Poduzeća ne može biti Poduzeće" msgid "Company Not Linked" msgstr "Poduzeće nije povezano" +#. Name of a DocType +#: erpnext/stock/doctype/company_restriction/company_restriction.json +msgid "Company Restriction" +msgstr "" + +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Supplier' +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Customer' +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Company Restrictions" +msgstr "" + #. Label of the shipping_address (Link) field in DocType 'Request for #. Quotation' #. Label of the shipping_address (Link) field in DocType 'Subcontracting Order' @@ -11864,7 +11888,7 @@ msgstr "Dostavna Adresa Poduzeća" msgid "Company Tax ID" msgstr "Fiskalni Broj Poduzeća" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:697 msgid "Company and Posting Date is mandatory" msgstr "Poduzeće i Datum Knjiženja su obavezni" @@ -11876,8 +11900,8 @@ msgstr "Filteri poduzeća i računa nisu postavljeni!" msgid "Company currencies of both the companies should match for Inter Company Transactions." msgstr "Valute oba poduzeća treba da budu usklađeni za transakcije između poduzeća." -#: erpnext/stock/doctype/material_request/material_request.js:380 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:856 +#: erpnext/stock/doctype/material_request/material_request.js:381 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:855 msgid "Company field is required" msgstr "Poduzeće je obavezno" @@ -11895,7 +11919,7 @@ msgstr "Poduzeće je obavezno za Račun Poduzeća" #: erpnext/accounts/doctype/subscription/subscription.py:481 msgid "Company is mandatory for generating an invoice. Please set a default company in Global Defaults." -msgstr "Poduzeće je obavezno za generisanje fakture. Postavi standard poduzeće u Standardnim Postavkama." +msgstr "Poduzeće je obavezno za izradu fakture. Postavi standard poduzeće u Standardnim Postavkama." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:86 msgid "Company is required" @@ -11917,7 +11941,7 @@ msgstr "Poduzeće imovine {0} i nabavni dokument {1} ne odgovara." #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" -msgstr "E-mail poduzeća ili lični e-mail je obavezan kada je omogućena opcija \"Automatski Kreiraj Korisnika\"" +msgstr "E-mail poduzeća ili lični e-mail je obavezan kada je omogućena opcija \"Automatski Izradi Osoblje\"" #. Description of the 'Registration Details' (Code) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json @@ -11988,7 +12012,7 @@ msgstr "Ime Konkurenta" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:610 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Konkurenti" @@ -12021,9 +12045,9 @@ msgstr "Proizvedeno dana ne može biti kasnije od danas" #: erpnext/manufacturing/dashboard_fixtures.py:76 msgid "Completed Operation" -msgstr "Proizvodna Operacija" +msgstr "Proizvodna Radnji" -#: erpnext/public/js/templates/shop_floor_template.html:990 +#: erpnext/public/js/templates/shop_floor_template.html:1010 msgid "Completed Operations" msgstr "Završene Radnje" @@ -12043,17 +12067,17 @@ msgstr "Završeni Projekti" msgid "Completed Qty" msgstr "Proizvedena Količina" -#: erpnext/manufacturing/doctype/work_order/services/operations.py:274 +#: erpnext/manufacturing/doctype/work_order/services/operations.py:294 msgid "Completed Qty cannot be greater than 'Qty to Manufacture'" msgstr "Proizvedena količina ne može biti veća od 'Količina za Proizvodnju'" #: erpnext/manufacturing/doctype/job_card/job_card.js:258 #: erpnext/manufacturing/doctype/job_card/job_card.js:392 -#: erpnext/public/js/shop_floor/shop_floor.js:768 +#: erpnext/public/js/shop_floor/shop_floor.js:804 msgid "Completed Quantity" msgstr "Proizvedena Količina" -#: erpnext/public/js/shop_floor/shop_floor.js:825 +#: erpnext/public/js/shop_floor/shop_floor.js:861 msgid "Completed Quantity should be greater than 0" msgstr "Završena Količina treba biti veća od 0" @@ -12091,9 +12115,9 @@ msgstr "Odrađeno od" msgid "Completion Date" msgstr "Datum Odrade" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:82 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:85 msgid "Completion Date can not be before Failure Date. Please adjust the dates accordingly." -msgstr "Datum Završetka ne može biti prije Datuma Kvara. Molimo prilagodite datume prema tome." +msgstr "Datum Završetka ne može biti prije Datuma Kvara. Prilagodi datume prema tome." #. Label of the completion_status (Select) field in DocType 'Maintenance #. Schedule Detail' @@ -12151,7 +12175,7 @@ msgstr "Uslovno Pravilo" #. DocType 'Inventory Dimension' #: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json msgid "Conditional Rule Examples" -msgstr "Primjeri Uvjetnih Pravila" +msgstr "Primjeri Uslovnih Pravila" #. Description of the 'Mixed Conditions' (Check) field in DocType 'Pricing #. Rule' @@ -12212,7 +12236,7 @@ msgstr "Konfiguriši akciju za zaustavljanje transakcije ili samo upozorite ako #: erpnext/buying/doctype/buying_settings/buying_settings.js:69 msgid "Configure the default Price List when creating a new Purchase transaction. Item prices will be fetched from this Price List." -msgstr "Konfiguriši standard Cijenovnik prilikom kreiranja nove transakcije Kupovine. Cijene artikala se preuzimaju iz ovog Cijenovnika." +msgstr "Konfiguriši standard Cjenovnik prilikom izrade nove transakcije Nabave. Cjene artikala se preuzimaju iz ovog Cjenovnika." #. Label of the confirm_before_resetting_posting_date (Check) field in DocType #. 'Accounts Settings' @@ -12245,7 +12269,7 @@ msgstr "Uzmi u obzir Knjigovodstvene Dimenzije" msgid "Consider Minimum Order Qty" msgstr "Uzmi u obzir Minimalnu Količinu Naloga" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1099 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1103 msgid "Consider Process Loss" msgstr "Uračunaj Gubitak Procesa" @@ -12351,11 +12375,11 @@ msgstr "Konsolidovani Probni Bilans" #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71 msgid "Consolidated Trial Balance can be generated for Companies having same root Company." -msgstr "Konsolidovani Bruto Bilans može se generirati za poduzeća koje imaju isto matično poduzeće." +msgstr "Konsolidovani Bruto Bilans može se izraditi za poduzeća koje imaju isto matično poduzeće." #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:167 msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}." -msgstr "Konsolidovani Probni Bilans nije mogao biti generisan jer kurs valute od {0} do {1} nije dostupan za {2}." +msgstr "Konsolidovani Probni Bilans nije mogao biti izrađen jer kurs valute od {0} do {1} nije dostupan za {2}." #. Option for the 'Lead Type' (Select) field in DocType 'Lead' #: erpnext/crm/doctype/lead/lead.json @@ -12631,7 +12655,7 @@ msgstr "Detalji Ugovora" #. Label of the contract_end_date (Date) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Contract End Date" -msgstr "Datum Okončanja Ugovora" +msgstr "Datum Isteka Ugovora" #. Name of a DocType #: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json @@ -12648,18 +12672,18 @@ msgstr "Period Ugovora" #: erpnext/crm/doctype/contract/contract.json #: erpnext/crm/doctype/contract_template/contract_template.json msgid "Contract Template" -msgstr "Šablon Ugovora" +msgstr "Predložak Ugovora" #. Name of a DocType #: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json msgid "Contract Template Fulfilment Terms" -msgstr "Uslovi spunjenja Šablona Ugovora" +msgstr "Uslovi spunjenja Predloška Ugovora" #. Label of the contract_template_help (HTML) field in DocType 'Contract #. Template' #: erpnext/crm/doctype/contract_template/contract_template.json msgid "Contract Template Help" -msgstr "Pomoć za Šablon Ugovora" +msgstr "Pomoć za Predložak Ugovora" #. Label of the contract_terms (Text Editor) field in DocType 'Contract' #: erpnext/crm/doctype/contract/contract.json @@ -12721,7 +12745,7 @@ msgstr "Kontroliše kako se sirovine troše tokom unosa zaliha 'Proizvodnje'." #. Description of the 'Tax Category' (Link) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Controls which tax template is auto-applied when this customer is selected on a transaction." -msgstr "Kontrolira koji se porezni šablon automatski primjenjuje kada se ovaj klijent odabere u transakciji." +msgstr "Kontrolira koji se porezni predložak automatski primjenjuje kada se ovaj klijent odabere u transakciji." #. Label of the conversion_factor (Float) field in DocType 'Loyalty Program' #. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt @@ -12757,7 +12781,7 @@ msgstr "Kontrolira koji se porezni šablon automatski primjenjuje kada se ovaj k #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:915 +#: erpnext/public/js/utils.js:927 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12783,23 +12807,23 @@ msgstr "Faktor Pretvaranja" msgid "Conversion Rate" msgstr "Stopa Pretvaranja" -#: erpnext/stock/doctype/item/item.py:463 +#: erpnext/stock/doctype/item/item.py:468 msgid "Conversion factor for default Unit of Measure must be 1 in row {0}" msgstr "Faktor pretvaranja za standard jedinicu mora biti 1 u redu {0}" #: erpnext/controllers/stock_controller.py:77 msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}." -msgstr "Faktor pretvaranja za artikal {0} je resetovan na 1.0 jer je jedinica {1} isti kao jedinica zalihe {2}." +msgstr "Faktor pretvaranja za artikal {0} je vraćen na 1.0 jer je jedinica {1} isti kao jedinica zalihe {2}." -#: erpnext/controllers/accounts_controller.py:1385 +#: erpnext/controllers/accounts_controller.py:1312 msgid "Conversion rate cannot be 0" msgstr "Stopa konverzije ne može biti 0" -#: erpnext/controllers/accounts_controller.py:1392 +#: erpnext/controllers/accounts_controller.py:1319 msgid "Conversion rate is 1.00, but document currency is different from company currency" msgstr "Stopa konverzije je 1,00, ali valuta dokumenta se razlikuje od valute poduzeća" -#: erpnext/controllers/accounts_controller.py:1388 +#: erpnext/controllers/accounts_controller.py:1315 msgid "Conversion rate must be 1.00 if document currency is same as company currency" msgstr "Stopa konverzije mora biti 1,00 ako je valuta dokumenta ista kao valuta poduzeća" @@ -12885,13 +12909,13 @@ msgstr "Kartica za Korektivni Posao" #: erpnext/manufacturing/doctype/job_card/job_card.js:455 #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Corrective Operation" -msgstr "Korektivna Operacija" +msgstr "Korektivna Radnji" #. Label of the corrective_operation_cost (Currency) field in DocType 'Work #. Order' #: erpnext/manufacturing/doctype/work_order/work_order.json msgid "Corrective Operation Cost" -msgstr "Troškovi Korektivne Operacije" +msgstr "Troškovi Korektivne Radnje" #. Label of the corrective_preventive (Select) field in DocType 'Quality #. Action' @@ -13006,7 +13030,6 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #. Item' #. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt #. Supplied Item' -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:567 #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:626 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1179 @@ -13051,7 +13074,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:28 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:47 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:30 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:47 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:42 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 @@ -13059,7 +13082,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/accounts/report/general_ledger/general_ledger.js:154 #: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 -#: erpnext/accounts/report/gross_profit/gross_profit.py:395 +#: erpnext/accounts/report/gross_profit/gross_profit.py:397 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 #: erpnext/accounts/report/purchase_register/purchase_register.js:46 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:30 @@ -13083,7 +13106,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 #: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 -#: erpnext/public/js/financial_statements.js:475 +#: erpnext/public/js/financial_statements.js:512 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/doctype/delivery_note/delivery_note.json @@ -13100,16 +13123,13 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Cost Center" msgstr "Centar Troškova" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Cost Center Allocation" msgstr "Dodjela Centra Troškova" @@ -13122,7 +13142,7 @@ msgstr "Procenat Alokacije Centra Troškova" #. Allocation' #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json msgid "Cost Center Allocation Percentages" -msgstr "Procenti Alokacije Centara Troškova" +msgstr "Postotci Dodjele Centara Troškova" #. Label of the cost_center_name (Data) field in DocType 'Cost Center' #: erpnext/accounts/doctype/cost_center/cost_center.json @@ -13135,12 +13155,16 @@ msgstr "Naziv Centra Troškova" msgid "Cost Center Number" msgstr "Broj Centra Troškova" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:122 +msgid "Cost Center Validation Error" +msgstr "" + #. Label of a Card Break in the Invoicing Workspace #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Cost Center and Budgeting" msgstr "Centar Troškova i Proračuna" -#: erpnext/public/js/utils/sales_common.js:546 +#: erpnext/public/js/utils/sales_common.js:544 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Centar Troškova za artikal redove je ažuriran na {0}" @@ -13153,7 +13177,7 @@ msgid "Cost Center is required" msgstr "Centar Troškova je obavezan" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:644 -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:401 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:410 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Centar Troškova je obavezan u redu {0} u tabeli PDV za tip {1}" @@ -13181,7 +13205,7 @@ msgstr "Centar Troškova {0} ne pripada {1}" msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "Centar Troškova {0} je grupni centar troškova a grupni centri troškova ne mogu se koristiti u transakcijama" -#: erpnext/accounts/report/financial_statements.py:685 +#: erpnext/accounts/report/financial_statements.py:863 msgid "Cost Center: {0} does not exist" msgstr "Centar Troškova: {0} ne postoji" @@ -13295,7 +13319,7 @@ msgstr "Detalji Obračuna Troškova" #: erpnext/projects/doctype/activity_cost/activity_cost.json #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json msgid "Costing Rate" -msgstr "Obračunata Cijena" +msgstr "Obračunata Cjena" #. Label of the project_details (Section Break) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json @@ -13312,11 +13336,11 @@ msgstr "Nije moguće izbrisati demo podatke" #: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" -msgstr "Nije moguće automatski kreirati klijenta zbog sljedećih nedostajućih obaveznih polja:" +msgstr "Nije moguće automatski izraditi klijenta zbog sljedećih nedostajućih obaveznih polja:" #: erpnext/stock/doctype/delivery_note/services/billing_status.py:52 msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again" -msgstr "Nije moguće automatski kreirati Kreditnu Fakturu, poništi oznaku \"Izdaj Kreditnu Fakturu\" i pošalji ponovo" +msgstr "Nije moguće automatski izraditi Kreditnu Fakturu, poništi oznaku \"Izdaj Kreditnu Fakturu\" i pošalji ponovo" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:978 msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." @@ -13340,25 +13364,25 @@ msgid "Could not re-extract the table." msgstr "Nije moguće ponovo izdvojiti tabelu." #: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py:123 -#: erpnext/accounts/report/financial_statements.py:241 +#: erpnext/accounts/report/financial_statements.py:420 msgid "Could not retrieve information for {0}." msgstr "Nije moguće preuzeti informacije za {0}." #: banking/src/components/features/BankStatementImporter/CSV/CSVRawDataPreview.tsx:65 msgid "Could not save the column mapping." -msgstr "Nije moguće sačuvati mapiranje kolona." +msgstr "Nije moguće spremiti mapiranje kolona." #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:80 msgid "Could not save the table settings." -msgstr "Nije moguće sačuvati postavke tabele." +msgstr "Nije moguće spremiti postavke tabele." #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:80 msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." -msgstr "Nije moguće riješiti kriterij funkcije bodovanja za {0}. Provjerite je li formula valjana." +msgstr "Nije moguće riješiti kriterij funkcije bodovanja za {0}. Provjeri je li formula valjana." #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." -msgstr "Nije moguće riješiti funkciju ponderirane ocjene. Provjerite je li formula valjana." +msgstr "Nije moguće riješiti funkciju ponderirane ocjene. Provjeri je li formula valjana." #: banking/src/components/features/BankStatementImporter/CSV/CSVRawDataPreview.tsx:88 #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:158 @@ -13427,94 +13451,94 @@ msgstr "Potražuje" #. Label of an action in the Onboarding Step 'Create Asset Category' #: erpnext/assets/onboarding_step/create_asset_category/create_asset_category.json msgid "Create Asset Category" -msgstr "Kreiraj Kategoriju Imovine" +msgstr "Izradi Kategoriju Imovine" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Asset Item' #: erpnext/assets/onboarding_step/create_asset_item/create_asset_item.json msgid "Create Asset Item" -msgstr "Kreiraj Artikal Imovine" +msgstr "Izradi Artikal Imovine" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Asset Location' #: erpnext/assets/onboarding_step/create_asset_location/create_asset_location.json msgid "Create Asset Location" -msgstr "Kreiraj Lokaciju Imovine" +msgstr "Izradi Lokaciju Imovine" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:278 msgid "Create Bank Entry against" -msgstr "Kreiraj bankovni unos za" +msgstr "Izradi bankovni unos za" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Bill of Materials' #: erpnext/manufacturing/onboarding_step/create_bill_of_materials/create_bill_of_materials.json #: erpnext/subcontracting/onboarding_step/create_bill_of_materials/create_bill_of_materials.json msgid "Create Bill of Materials" -msgstr "Kreiraj Sastavnicu" +msgstr "Izradi Sastavnicu" #. Label of the create_chart_of_accounts_based_on (Select) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Create Chart Of Accounts Based On" -msgstr "Kreiraj Kontni Plan na osnovu" +msgstr "Izradi Kontni Plan na osnovu" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Customer' #: erpnext/selling/onboarding_step/create_customer/create_customer.json msgid "Create Customer" -msgstr "Kreiraj Klijenta" +msgstr "Izradi Klijenta" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Delivery Note' #: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json #: erpnext/stock/onboarding_step/create_delivery_note/create_delivery_note.json msgid "Create Delivery Note" -msgstr "Kreiraj Dostavnicu" +msgstr "Izradi Dostavnicu" #: erpnext/stock/doctype/delivery_note/delivery_note_list.js:63 msgid "Create Delivery Trip" -msgstr "Kreiraj Dostavni Put" +msgstr "Izradi Dostavni Put" #: erpnext/utilities/activation.py:139 msgid "Create Employee" -msgstr "Kreiraj Personal" +msgstr "Izradi Osoblje" #: erpnext/utilities/activation.py:137 msgid "Create Employee Records" -msgstr "Kreiraj Personalni Registar" +msgstr "Izradi Registar Osoblja" #: erpnext/utilities/activation.py:138 msgid "Create Employee records." -msgstr "Kreiraj Personalni Registar" +msgstr "Izradi Registar Osoblja." #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Existing Asset' #: erpnext/assets/onboarding_step/create_existing_asset/create_existing_asset.json msgid "Create Existing Asset" -msgstr "Kreiraj Postojeći Imovinu" +msgstr "Izradi Postojeći Imovinu" #. Label of an action in the Onboarding Step 'Create Finished Goods' #: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json msgid "Create Finished Good" -msgstr "Kreiraj Gotov Proizvod" +msgstr "Izradi Gotov Proizvod" #. Title of an Onboarding Step #: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json msgid "Create Finished Goods" -msgstr "Kreiraj Gotove Proizvode" +msgstr "Izradi Gotove Proizvode" #. Label of the is_grouped_asset (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Create Grouped Asset" -msgstr "Kreiraj Grupiranu Imovinu" +msgstr "Izradi Grupiranu Imovinu" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:269 msgid "Create Inter Company Journal Entry" -msgstr "Kreiraj Naloga Knjiženja za Inter Poduzeće" +msgstr "Izradi Naloga Knjiženja za Inter Poduzeće" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:55 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:62 msgid "Create Invoices" -msgstr "Kreiraj Fakture" +msgstr "Izradi Fakture" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Item' @@ -13522,43 +13546,43 @@ msgstr "Kreiraj Fakture" #: erpnext/selling/onboarding_step/create_item/create_item.json #: erpnext/stock/onboarding_step/create_item/create_item.json msgid "Create Item" -msgstr "Kreiraj Artikal" +msgstr "Izradi Artikal" #: erpnext/manufacturing/doctype/work_order/work_order.js:199 msgid "Create Job Card" -msgstr "Kreiraj Radni Nalog" +msgstr "Izradi Radni Nalog" #. Label of the create_job_card_based_on_batch_size (Check) field in DocType #. 'Operation' #: erpnext/manufacturing/doctype/operation/operation.json msgid "Create Job Card based on Batch Size" -msgstr "Kreiraj Radni Nalog na osnovu veličine Šarže" +msgstr "Izradi Radni Nalog na osnovu veličine Šarže" #: erpnext/accounts/doctype/payment_order/payment_order.js:39 msgid "Create Journal Entries" -msgstr "Kreiraj Naloge Knjiženja" +msgstr "Izradi Naloge Knjiženja" #: erpnext/accounts/doctype/share_transfer/share_transfer.js:18 msgid "Create Journal Entry" -msgstr "Kreiraj Naloga Knjiženja" +msgstr "Izradi Naloga Knjiženja" #: erpnext/utilities/activation.py:81 msgid "Create Lead" -msgstr "Kreiraj Potencijalnog Klijenta" +msgstr "Izradi Potencijalnog Klijenta" #: erpnext/utilities/activation.py:79 msgid "Create Leads" -msgstr "Kreiraj tragove" +msgstr "Izradi tragove" #. Label of the post_change_gl_entries (Check) field in DocType 'POS Settings' #: erpnext/accounts/doctype/pos_settings/pos_settings.json msgid "Create Ledger Entries for Change Amount" -msgstr "Kreiraj Unose u Registar za Kusur" +msgstr "Izradi Unose u Registar za Kusur" -#: erpnext/buying/doctype/supplier/supplier.js:257 -#: erpnext/selling/doctype/customer/customer.js:289 +#: erpnext/buying/doctype/supplier/supplier.js:266 +#: erpnext/selling/doctype/customer/customer.js:298 msgid "Create Link" -msgstr "Kreiraj vezu" +msgstr "Izradi vezu" #: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.js:41 msgid "Create MPS" @@ -13568,45 +13592,45 @@ msgstr "Izradi MPS" #. Creation Tool' #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json msgid "Create Missing Party" -msgstr "Kreiraj Stranku koja nedostaje" +msgstr "Izradi Stranku koja nedostaje" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:196 msgid "Create Multi-level BOM" -msgstr "Kreiraj višeslojnu Sastavnicu" +msgstr "Izradi višeslojnu Sastavnicu" #: erpnext/public/js/call_popup/call_popup.js:122 msgid "Create New Contact" -msgstr "Kreiraj Novi Kontakt" +msgstr "Izradi Novi Kontakt" #: erpnext/public/js/call_popup/call_popup.js:128 msgid "Create New Customer" -msgstr "Kreiraj Novog Klijenta" +msgstr "Izradi Novog Klijenta" #: erpnext/public/js/call_popup/call_popup.js:134 msgid "Create New Lead" -msgstr "Kreiraj novi trag" +msgstr "Izradi novi trag" #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" -msgstr "Kreiraj novo {0}" +msgstr "Izradi novo {0}" #. Label of an action in the Onboarding Step 'Create Operations' #: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json msgid "Create Operation" -msgstr "Kreiraj Operaciju" +msgstr "Izradi Radnju" #. Title of an Onboarding Step #: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json msgid "Create Operations" -msgstr "Kreiraj Operacije" +msgstr "Izradi Radnje" #: erpnext/crm/doctype/lead/lead.js:161 msgid "Create Opportunity" -msgstr "Kreiraj Priliku" +msgstr "Izradi Priliku" #: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" -msgstr "Kreiraj unos otvaranja Kase" +msgstr "Izradi unos otvaranja Kase" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:212 #: erpnext/accounts/report/accounts_payable/accounts_payable.js:285 @@ -13618,39 +13642,39 @@ msgstr "Izradi Unose Plaćanja" #: erpnext/accounts/doctype/payment_request/payment_request.js:66 #: erpnext/accounts/onboarding_step/create_payment_entry/create_payment_entry.json msgid "Create Payment Entry" -msgstr "Kreiraj unos Plaćanja" +msgstr "Izradi unos Plaćanja" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:865 msgid "Create Payment Entry for Consolidated POS Invoices." -msgstr "Kreiraj Unos Plaćanja za Konsolidovane Kasa Fakture." +msgstr "Izradi Unos Plaćanja za Konsolidovane Kasa Fakture." #: erpnext/public/js/controllers/transaction.js:580 msgid "Create Payment Request" -msgstr "Kreiraj Zahtjev Plaćanja" +msgstr "Izradi Zahtjev Plaćanja" #: erpnext/manufacturing/doctype/work_order/work_order.js:821 msgid "Create Pick List" -msgstr "Kreiraj Listu Odabira" +msgstr "Izradi Listu Odabira" #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:11 msgid "Create Print Format" -msgstr "Kreiraj Format Ispisivanja" +msgstr "Izradi Format Ispisivanja" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Project' #: erpnext/projects/onboarding_step/create_project/create_project.json msgid "Create Project" -msgstr "Kreiraj Projekt" +msgstr "Izradi Projekt" #: erpnext/crm/doctype/lead/lead_list.js:8 msgid "Create Prospect" -msgstr "Kreiraj Prospekt" +msgstr "Izradi Prospekt" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Purchase Invoice' #: erpnext/buying/onboarding_step/create_purchase_invoice/create_purchase_invoice.json msgid "Create Purchase Invoice" -msgstr "Kreiraj Nabavnu Fakturu" +msgstr "Izradi Nabavnu Fakturu" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Purchase Order' @@ -13658,184 +13682,184 @@ msgstr "Kreiraj Nabavnu Fakturu" #: erpnext/selling/doctype/sales_order/sales_order.js:1749 #: erpnext/utilities/activation.py:108 msgid "Create Purchase Order" -msgstr "Kreiraj Nabavni Nalog" +msgstr "Izradi Nabavni Nalog" #: erpnext/utilities/activation.py:106 msgid "Create Purchase Orders" -msgstr "Kreiraj Nabavne Naloge" +msgstr "Izradi Nabavne Naloge" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Purchase Receipt' #: erpnext/stock/onboarding_step/create_purchase_receipt/create_purchase_receipt.json msgid "Create Purchase Receipt" -msgstr "Kreiraj Nabavni Račun" +msgstr "Izradi Nabavni Račun" #: erpnext/utilities/activation.py:90 msgid "Create Quotation" -msgstr "Kreiraj Ponudbeni Nalog" +msgstr "Izradi Ponudbeni Nalog" #. Label of an action in the Onboarding Step 'Create Raw Materials' #: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json #: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json msgid "Create Raw Material" -msgstr "Kreiraj Sirovinu" +msgstr "Izradi Sirovinu" #. Title of an Onboarding Step #: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json #: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json msgid "Create Raw Materials" -msgstr "Kreiraj Sirovine" +msgstr "Izradi Sirovine" #. Label of the create_receiver_list (Button) field in DocType 'SMS Center' #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Create Receiver List" -msgstr "Kreiraj Listu Primatelja" +msgstr "Izradi Listu Primatelja" #: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:44 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:92 msgid "Create Reposting Entries" -msgstr "Kreiraj Unose Ponovnog Knjiženja" +msgstr "Izradi Unose Ponovnog Knjiženja" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:58 msgid "Create Reposting Entry" -msgstr "Kreiraj Unos Ponovnog Knjiženja" +msgstr "Izradi Unos Ponovnog Knjiženja" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Sales Invoice' #: erpnext/accounts/onboarding_step/create_sales_invoice/create_sales_invoice.json -#: erpnext/projects/doctype/timesheet/timesheet.js:55 -#: erpnext/projects/doctype/timesheet/timesheet.js:231 -#: erpnext/projects/doctype/timesheet/timesheet.js:235 +#: erpnext/projects/doctype/timesheet/timesheet.js:56 +#: erpnext/projects/doctype/timesheet/timesheet.js:233 +#: erpnext/projects/doctype/timesheet/timesheet.js:237 #: erpnext/selling/onboarding_step/create_sales_invoice/create_sales_invoice.json msgid "Create Sales Invoice" -msgstr "Kreiraj Prodajnu Fakturu" +msgstr "Izradi Prodajnu Fakturu" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Sales Order' #: erpnext/selling/onboarding_step/create_sales_order/create_sales_order.json #: erpnext/utilities/activation.py:99 msgid "Create Sales Order" -msgstr "Kreiraj Prodajni Nalog" +msgstr "Izradi Prodajni Nalog" #: erpnext/utilities/activation.py:98 msgid "Create Sales Orders to help you plan your work and deliver on-time" -msgstr "Kreiraj Prodajne Naloge kako biste lakše planirali svoj posao i isporučili na vrijeme" +msgstr "Izradi Prodajne Naloge kako biste lakše planirali svoj posao i isporučili na vrijeme" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Service Item' #: erpnext/subcontracting/onboarding_step/create_service_item/create_service_item.json msgid "Create Service Item" -msgstr "Kreiraj Artikal Usluge" +msgstr "Izradi Artikal Usluge" #: erpnext/stock/dashboard/item_dashboard.js:283 -#: erpnext/stock/doctype/material_request/material_request.js:478 +#: erpnext/stock/doctype/material_request/material_request.js:479 msgid "Create Stock Entry" -msgstr "Kreiraj unos Zaliha" +msgstr "Izradi unos Zaliha" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Subcontracted Item' #: erpnext/subcontracting/onboarding_step/create_subcontracted_item/create_subcontracted_item.json msgid "Create Subcontracted Item" -msgstr "Kreiraj Podizvođački Artikal" +msgstr "Izradi Podizvođački Artikal" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Subcontracting Order' #: erpnext/subcontracting/onboarding_step/create_subcontracting_order/create_subcontracting_order.json msgid "Create Subcontracting Order" -msgstr "Kreiraj Podizvođački Nalog" +msgstr "Izradi Podizvođački Nalog" #. Title of an Onboarding Step #: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json msgid "Create Subcontracting PO" -msgstr "Kreiraj Podizvođački Nabavni Nalog" +msgstr "Izradi Podizvođački Nabavni Nalog" #. Label of an action in the Onboarding Step 'Create Subcontracting PO' #: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json msgid "Create Subcontracting Purchase Order" -msgstr "Kreiraj Podizvođački Nabavni Nalog" +msgstr "Izradi Podizvođački Nabavni Nalog" #. Title of an Onboarding Step #: erpnext/buying/onboarding_step/create_supplier/create_supplier.json msgid "Create Supplier" -msgstr "Kreiraj Dobavljača" +msgstr "Izradi Dobavljača" #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:181 msgid "Create Supplier Quotation" -msgstr "Kreiraj Ponudbeni Nalog Dobavljača" +msgstr "Izradi Ponudbeni Nalog Dobavljača" #. Label of an action in the Onboarding Step 'Create Tasks' #: erpnext/projects/onboarding_step/create_tasks/create_tasks.json msgid "Create Task" -msgstr "Kreiraj Zadatak" +msgstr "Izradi Zadatak" #. Title of an Onboarding Step #: erpnext/projects/onboarding_step/create_tasks/create_tasks.json msgid "Create Tasks" -msgstr "Kreiraj Zadatke" +msgstr "Izradi Zadatke" #: erpnext/setup/doctype/company/company.js:173 msgid "Create Tax Template" -msgstr "Kreiraj PDV Šablon" +msgstr "Izradi PDV Predložak" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Timesheet' #: erpnext/projects/onboarding_step/create_timesheet/create_timesheet.json #: erpnext/utilities/activation.py:130 msgid "Create Timesheet" -msgstr "Kreiraj Radni List" +msgstr "Izradi Radni List" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Transfer Entry' #: erpnext/stock/onboarding_step/create_transfer_entry/create_transfer_entry.json msgid "Create Transfer Entry" -msgstr "Kreiraj Unos Prenosa" +msgstr "Izradi Unos Prenosa" #: erpnext/setup/doctype/employee/employee.js:50 #: erpnext/setup/doctype/employee/employee.js:52 #: erpnext/utilities/activation.py:119 msgid "Create User" -msgstr "Kreiraj Korisnika" +msgstr "Izradi Korisnika" #. Label of the create_user_automatically (Check) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Create User Automatically" -msgstr "Automatski Kreiraj Korisnika" +msgstr "Automatski Izradi Korisnika" #. Label of the create_user_permission (Check) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.js:65 #: erpnext/setup/doctype/employee/employee.json msgid "Create User Permission" -msgstr "Kreiraj Korisničku Dozvolu" +msgstr "Izradi Korisničku Dozvolu" #: erpnext/utilities/activation.py:115 msgid "Create Users" -msgstr "Kreiraj Korisnike" +msgstr "Izradi Korisnike" -#: erpnext/stock/doctype/item/item.js:1394 +#: erpnext/stock/doctype/item/item.js:1415 msgid "Create Variant" -msgstr "Kreiraj Varijantu" +msgstr "Izradi Varijantu" -#: erpnext/stock/doctype/item/item.js:1206 -#: erpnext/stock/doctype/item/item.js:1243 +#: erpnext/stock/doctype/item/item.js:1227 +#: erpnext/stock/doctype/item/item.js:1264 msgid "Create Variants" -msgstr "Kreiraj Varijante" +msgstr "Izradi Varijante" #. Label of an action in the Onboarding Step 'Setup Warehouse' #: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json msgid "Create Warehouses" -msgstr "Kreiraj Skladišta" +msgstr "Izradi Skladišta" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Work Order' #: erpnext/manufacturing/onboarding_step/create_work_order/create_work_order.json msgid "Create Work Order" -msgstr "Kreiraj Radni Nalog" +msgstr "Izradi Radni Nalog" #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:10 msgid "Create Workstation" -msgstr "Kreiraj Radnu Stanicu" +msgstr "Izradi Radnu Stanicu" -#: erpnext/public/js/shop_floor/shop_floor.js:1042 +#: erpnext/public/js/shop_floor/shop_floor.js:1078 msgid "Create a Manufacture stock entry for the finished goods?" msgstr "Izradi Proizvodni Unos Zaliha za gotove proizvode?" @@ -13845,64 +13869,64 @@ msgstr "Napravite nalog knjiženja za troškove, prihode ili podijeljene transak #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:689 msgid "Create a new entry based on the rule" -msgstr "Kreiraj novi unos na osnovu pravila" +msgstr "Izradi novi unos na osnovu pravila" #: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:71 msgid "Create a new rule to automatically classify transactions." -msgstr "Kreirajte novo pravilo za automatsku klasifikaciju transakcija." +msgstr "Izradi novo pravilo za automatsku klasifikaciju transakcija." -#: erpnext/stock/doctype/item/item.js:1226 -#: erpnext/stock/doctype/item/item.js:1387 +#: erpnext/stock/doctype/item/item.js:1247 +#: erpnext/stock/doctype/item/item.js:1408 msgid "Create a variant with the template image." -msgstr "Kreiraj Varijantu sa slikom šablona." +msgstr "Izradi Varijantu sa slikom predloška." -#: erpnext/stock/stock_ledger.py:2157 +#: erpnext/stock/stock_ledger.py:2205 msgid "Create an incoming stock transaction for the Item." -msgstr "Kreirajte dolaznu transakciju zaliha za artikal." +msgstr "Izradi dolaznu transakciju zaliha za artikal." #: erpnext/utilities/activation.py:88 msgid "Create customer quotes" -msgstr "Kreiraj Ponude Klijenta" +msgstr "Izradi Ponude Klijenta" #. Label of an action in the Onboarding Step 'Create Delivery Note' #: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json msgid "Create delivery note" -msgstr "Kreiraj Dostavnicu" +msgstr "Izradi Dostavnicu" #. Label of the create_pr_in_draft_status (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Create payment requests in Draft status" -msgstr "Kreiraj zahtjeve za plaćanje u Nacrt statusu" +msgstr "Izradi zahtjeve za plaćanje u Nacrt statusu" #. Label of an action in the Onboarding Step 'Create Supplier' #: erpnext/buying/onboarding_step/create_supplier/create_supplier.json msgid "Create supplier" -msgstr "Kreiraj Dobavljača" +msgstr "Izradi Dobavljača" #: erpnext/public/js/bulk_transaction_processing.js:14 msgid "Create {0} {1} ?" -msgstr "Kreiraj {0} {1}?" +msgstr "Izradi {0} {1}?" #. Label of the created_by_migration (Check) field in DocType 'Tax Withholding #. Entry' #: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json msgid "Created By Migration" -msgstr "Kreirano Migracijom" +msgstr "Izrađeno Migracijom" #: erpnext/accounts/bulk_payment.py:77 msgid "Created {0} draft Grouped Payment Entries" msgstr "Izrađeno {0} nacrta Grupiranih Unosa Plaćanja" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:230 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:232 msgid "Created {0} scorecards for {1} between:" -msgstr "Kreirano {0} tablica bodova za {1} između:" +msgstr "Izrađeno {0} tablica bodova za {1} između:" #. Description of the 'Create User Automatically' (Check) field in DocType #. 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Creates a User account for this employee using the Preferred, Company, or Personal email." -msgstr "Kreira korisnički račun za personal koristeći preferiranu, poduzeća ili ličnu e-poštu." +msgstr "Izradi korisnički račun za Osoblje koristeći Preferiranu, Poduzeća ili Ličnu adresu e-pošte." #. Description of the 'Create Grouped Asset' (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -13913,15 +13937,15 @@ msgstr "Stvarajednu grupisanu imovinu umjesto pojedinačnih kada se nabavlja na #. 'Item' #: erpnext/stock/doctype/item/item.json msgid "Creates an Item Price automatically when the item is saved" -msgstr "Automatski stvori cijenu artikla kada se artikal sačuva" +msgstr "Automatski stvori cjenu artikla kada se artikal spremi" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:140 msgid "Creating Accounts..." -msgstr "Kreiranje Knjigovodstva u toku..." +msgstr "Izrada Knjigovodstva u toku..." #: erpnext/selling/doctype/sales_order/sales_order.js:1624 msgid "Creating Delivery Note ..." -msgstr "Kreiranje Otpremnice u toku..." +msgstr "Izrada Otpremnice u toku..." #: erpnext/selling/doctype/sales_order/sales_order.js:715 msgid "Creating Delivery Schedule..." @@ -13929,69 +13953,69 @@ msgstr "Izrada Rasporeda Dostave..." #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162 msgid "Creating Dimensions..." -msgstr "Kreiranje Dimenzija u toku..." +msgstr "Izrada Dimenzija u toku..." -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:92 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:102 msgid "Creating Journal Entries..." -msgstr "Kreiranje Naloga Knjiženja u toku..." +msgstr "Izrada Naloga Knjiženja u toku..." -#: erpnext/stock/doctype/item/item.js:995 +#: erpnext/stock/doctype/item/item.js:1016 msgid "Creating Opening Stock Entry..." -msgstr "Kreiranje Početnog Unosa Zaliha..." +msgstr "Izrada Početnog Unosa Zaliha..." #: erpnext/stock/doctype/packing_slip/packing_slip.js:42 msgid "Creating Packing Slip ..." -msgstr "Kreiranje Otpremnice u toku..." +msgstr "Izrada Otpremnice u toku..." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:61 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:68 msgid "Creating Purchase Invoices ..." -msgstr "Kreiranje Nabavnih Faktura u toku..." +msgstr "Izrada Nabavnih Faktura u toku..." #: erpnext/selling/doctype/sales_order/sales_order.js:1773 msgid "Creating Purchase Order ..." -msgstr "Kreiranje Nabavnih Naloga u toku..." +msgstr "Izrada Nabavnih Naloga u toku..." #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:725 #: erpnext/buying/doctype/purchase_order/purchase_order.js:471 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:74 msgid "Creating Purchase Receipt ..." -msgstr "Kreiranje Nabavnog Računa u toku..." +msgstr "Izrada Nabavnog Računa u toku..." #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:603 msgid "Creating Return of Components ..." -msgstr "Kreiranje Povrata Komponenti ..." +msgstr "Izrada Povrata Komponenti ..." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:59 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:66 msgid "Creating Sales Invoices ..." -msgstr "Kreiranje Prodajne Faktura u toku..." +msgstr "Izrada Prodajne Faktura u toku..." #: erpnext/buying/doctype/purchase_order/purchase_order.js:87 msgid "Creating Stock Entry" -msgstr "Kreiranje Unosa Zaliha u toku..." +msgstr "Izrada Unosa Zaliha u toku..." #: erpnext/selling/doctype/sales_order/sales_order.js:1894 msgid "Creating Subcontracting Inward Order ..." -msgstr "Kreiranje Podizvođaćkog Naloga u toku..." +msgstr "Izrada Podizvođaćkog Naloga u toku..." #: erpnext/buying/doctype/purchase_order/purchase_order.js:486 msgid "Creating Subcontracting Order ..." -msgstr "Kreiranje Podizvođačkog Naloga u toku..." +msgstr "Izrada Podizvođačkog Naloga u toku..." #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:692 msgid "Creating Subcontracting Receipt ..." -msgstr "Kreiranje Podizvođačke Priznanice u toku..." +msgstr "Izrada Podizvođačke Priznanice u toku..." #: erpnext/setup/doctype/employee/employee.js:85 msgid "Creating User..." -msgstr "Kreiranje Korisnika u toku..." +msgstr "Izrada Korisnika u toku..." #: erpnext/setup/setup_wizard/setup_wizard.py:44 msgid "Creating demo data" -msgstr "Kreiranje demo podataka" +msgstr "Izrada demo podataka" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 msgid "Creating {} out of {} {}" -msgstr "Kreiranje {} od {} {}" +msgstr "Izrada {} od {} {}" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:141 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:165 @@ -14001,19 +14025,19 @@ msgstr "Kreacija" #: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" -msgstr "Kreiranje {1}(s) uspješno" +msgstr "Izrada {1}(s) uspješno" #: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" -msgstr "Kreiranje {0} nije uspjelo.\n" -"\t\t\t\tProvjerite Zapisnik Masovnih Transakcija" +msgstr "Izrada {0} nije uspjelo.\n" +"\t\t\t\tProvjeri Zapisnik Masovnih Transakcija" #: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" -msgstr "Kreiranje {0} nije uspjelo.\n" -"\t\t\t\tProvjerite Zapisnik Masovnih Transakcija" +msgstr "Izrada {0} nije uspjelo.\n" +"\t\t\t\tProvjeri Zapisnik Masovnih Transakcija" #. Option for the 'Balance must be' (Select) field in DocType 'Account' #. Label of the credit (Data) field in DocType 'Bank Transaction Rule Accounts' @@ -14044,6 +14068,13 @@ msgstr "Kreiranje {0} nije uspjelo.\n" msgid "Credit" msgstr "Kredit" +#. Label of the credit_limits (Table) field in DocType 'Customer' +#. Label of the credit_limits (Table) field in DocType 'Customer Group' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Credit & Overdue Limits" +msgstr "" + #: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Kredit (Transakcija)" @@ -14113,23 +14144,19 @@ msgstr "Unos Kreditne Kartice" msgid "Credit Days" msgstr "Kreditni Dani" -#. Label of the credit_limits (Table) field in DocType 'Customer' #. Label of the credit_limit (Currency) field in DocType 'Customer Credit #. Limit' #. Label of the credit_limit (Currency) field in DocType 'Company' -#. Label of the credit_limits (Table) field in DocType 'Customer Group' #. Label of the section_credit_limit (Section Break) field in DocType 'Supplier #. Group' -#: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:65 #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/supplier_group/supplier_group.json msgid "Credit Limit" msgstr "Kreditno Ograničenje" -#: erpnext/selling/doctype/customer/customer.py:542 +#: erpnext/selling/doctype/customer/customer.py:559 msgid "Credit Limit Crossed" msgstr "Kreditno Ograničenje je probijeno" @@ -14164,7 +14191,7 @@ msgstr "Kreditni Mjeseci" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:176 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219 #: erpnext/controllers/sales_and_purchase_return.py:462 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:303 #: erpnext/stock/doctype/delivery_note/delivery_note.js:89 @@ -14194,13 +14221,13 @@ msgstr "Kreditna Faktura će ažurirati svoj nepodmireni iznos, čak i ako je na #: erpnext/stock/doctype/delivery_note/services/billing_status.py:49 msgid "Credit Note {0} has been created automatically" -msgstr "Kreditna Faktura {0} je kreirana automatski" +msgstr "Kreditna Faktura {0} je izrađena automatski" #. Label of the credit_to (Link) field in DocType 'Purchase Invoice' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:380 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:388 -#: erpnext/controllers/accounts_controller.py:1287 +#: erpnext/controllers/accounts_controller.py:1214 msgid "Credit To" msgstr "Kredit Za" @@ -14209,20 +14236,20 @@ msgstr "Kredit Za" msgid "Credit in Company Currency" msgstr "Kredit u Valuti Poduzeća" -#: erpnext/selling/doctype/customer/customer.py:508 -#: erpnext/selling/doctype/customer/customer.py:564 +#: erpnext/selling/doctype/customer/customer.py:525 +#: erpnext/selling/doctype/customer/customer.py:581 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Kreditno ograničenje je premašeno za klijenta {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:398 +#: erpnext/selling/doctype/customer/customer.py:412 msgid "Credit limit is already defined for the Company {0}" msgstr "Kreditno ograničenje je već definisano za {0}" -#: erpnext/selling/doctype/customer/customer.py:563 +#: erpnext/selling/doctype/customer/customer.py:580 msgid "Credit limit reached for customer {0}" msgstr "Kreditno Ograničenje je dostignuto za Klijenta {0}" -#: erpnext/accounts/utils.py:2854 +#: erpnext/accounts/utils.py:2850 msgid "Credit limit warning — submission may be blocked: {0}" msgstr "Upozorenje o kreditnom ograničenju — slanje zahtjeva može biti blokirano: {0}" @@ -14282,7 +14309,7 @@ msgstr "Prioritet Kriterija" msgid "Criteria weights must add up to 100%" msgstr "Prioriteti Kriterija moraju iznositi do 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:196 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Cron interval bi trebao biti između 1 i 59 min" @@ -14339,10 +14366,8 @@ msgstr "Šolja" #. Label of a Link in the Invoicing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/doctype/currency_exchange/currency_exchange.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Currency Exchange" msgstr "Razmjena Valuta" @@ -14352,7 +14377,6 @@ msgstr "Razmjena Valuta" #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Currency Exchange Settings" msgstr "Postavke Razmjene Valuta" @@ -14399,19 +14423,19 @@ msgstr "Devizni Kurs mora biti primjenjiv za Nabavu ili Prodaju." #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Currency and Price List" -msgstr "Valuta i Cijenovnik" +msgstr "Valuta i Cjenovnik" #: erpnext/accounts/doctype/account/account.py:350 msgid "Currency can not be changed after making entries using some other currency" msgstr "Valuta se ne može mijenjati nakon unosa u nekoj drugoj valuti" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 -msgid "Currency filters are currently unsupported in Custom Financial Report." -msgstr "Filteri valuta trenutno nisu podržani u Prilagođenom Finansijskom Izvještaju." +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:260 +msgid "Currency filters are currently unsupported in Custom Financial Report" +msgstr "Filteri valuta trenutno nisu podržani u Prilagođenom Finansijskom Izvještaju" #: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:215 #: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:284 -#: erpnext/accounts/utils.py:2573 +#: erpnext/accounts/utils.py:2569 msgid "Currency for {0} must be {1}" msgstr "Valuta za {0} mora biti {1}" @@ -14421,11 +14445,11 @@ msgstr "Valuta Računa za Zatvaranje mora biti {0}" #: erpnext/manufacturing/doctype/bom/bom.py:680 msgid "Currency of the price list {0} must be {1} or {2}" -msgstr "Valuta cijenovnika {0} mora biti {1} ili {2}" +msgstr "Valuta cjenovnika {0} mora biti {1} ili {2}" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:298 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 msgid "Currency should be same as Price List Currency: {0}" -msgstr "Valuta bi trebala biti ista kao Valuta Cijenovnika: {0}" +msgstr "Valuta bi trebala biti ista kao Valuta Cjenovnika: {0}" #. Label of the current_address (Small Text) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -14469,7 +14493,7 @@ msgstr "Trenutna Imovina" msgid "Current BOM" msgstr "Trenutna Sastavnica" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:81 msgid "Current BOM and New BOM cannot be the same" msgstr "Trenutna i Nova Sastavnica ne mogu biti iste" @@ -14699,7 +14723,7 @@ msgstr "Prilagođeni Razdjelnici" #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:38 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:29 #: erpnext/accounts/report/general_ledger/general_ledger.html:136 -#: erpnext/accounts/report/gross_profit/gross_profit.py:416 +#: erpnext/accounts/report/gross_profit/gross_profit.py:418 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:38 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:22 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:221 @@ -14710,8 +14734,8 @@ msgstr "Prilagođeni Razdjelnici" #: erpnext/accounts/report/sales_register/sales_register.py:201 #: erpnext/assets/doctype/asset/asset.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/supplier/supplier.js:225 -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/buying/doctype/supplier/supplier.js:234 +#: erpnext/controllers/trends.py:434 erpnext/crm/doctype/contract/contract.json #: erpnext/crm/doctype/lead/lead.js:32 #: erpnext/crm/doctype/opportunity/opportunity.js:99 #: erpnext/crm/doctype/prospect/prospect.js:8 @@ -14724,7 +14748,7 @@ msgstr "Prilagođeni Razdjelnici" #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json #: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/timesheet/timesheet.js:223 +#: erpnext/projects/doctype/timesheet/timesheet.js:225 #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:46 #: erpnext/public/js/sales_trends_filters.js:25 @@ -14772,7 +14796,7 @@ msgstr "Prilagođeni Razdjelnici" #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/shipment/shipment.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:494 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:493 #: erpnext/stock/doctype/warehouse/warehouse.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.js:36 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:121 @@ -14792,7 +14816,6 @@ msgstr "Prilagođeni Razdjelnici" #: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/selling.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Customer" msgstr "Klijent" @@ -14870,7 +14893,7 @@ msgstr "Kod Klijenta" #. Label of the customer_contact_display (Small Text) field in DocType #. 'Purchase Order' #. Label of the customer_contact (Small Text) field in DocType 'Delivery Stop' -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1189 #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/stock/doctype/delivery_stop/delivery_stop.json msgid "Customer Contact" @@ -14921,7 +14944,7 @@ msgstr "Standard Postavke Klijenta" #: erpnext/stock/doctype/item/item.json #: erpnext/support/doctype/warranty_claim/warranty_claim.json msgid "Customer Details" -msgstr "Detalji o Kupcu" +msgstr "Detalji o Klijentu" #. Label of the customer_feedback (Small Text) field in DocType 'Maintenance #. Visit' @@ -14976,15 +14999,16 @@ msgstr "Povratne informacije Klijenta" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:115 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1245 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1247 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:96 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:187 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:56 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:163 -#: erpnext/accounts/report/gross_profit/gross_profit.py:423 +#: erpnext/accounts/report/gross_profit/gross_profit.py:425 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:208 #: erpnext/accounts/report/sales_register/sales_register.js:27 #: erpnext/accounts/report/sales_register/sales_register.py:216 +#: erpnext/controllers/trends.py:465 #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/doctype/prospect/prospect.json #: erpnext/crm/workspace/crm/crm.json @@ -15037,7 +15061,7 @@ msgstr "Artikal Klijenta" msgid "Customer Items" msgstr "Artikli Klijenta" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1236 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1238 msgid "Customer LPO" msgstr "Lokalni Nabavni Nalog Klijenta" @@ -15089,14 +15113,15 @@ msgstr "Mobilni Broj Klijenta" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1178 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:92 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:35 -#: erpnext/accounts/report/gross_profit/gross_profit.py:430 +#: erpnext/accounts/report/gross_profit/gross_profit.py:432 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:228 #: erpnext/accounts/report/sales_register/sales_register.py:207 #: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/controllers/trends.py:441 #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json @@ -15195,13 +15220,13 @@ msgstr "Klijent Dostavljen Artikal" msgid "Customer Provided Item Cost" msgstr "Trošak Klijent Dostavljenog Artikala " -#: erpnext/setup/doctype/company/company.py:555 +#: erpnext/setup/doctype/company/company.py:557 msgid "Customer Service" msgstr "Podrška Klijenta" #: erpnext/setup/setup_wizard/data/designation.txt:13 msgid "Customer Service Representative" -msgstr "Predstavnik Servisa Kupca" +msgstr "Predstavnik Servisa Klijenta" #. Label of the customer_territory (Link) field in DocType 'Loyalty Program' #: erpnext/accounts/doctype/loyalty_program/loyalty_program.json @@ -15252,12 +15277,16 @@ msgstr "Klijent ili Artikal" msgid "Customer required for 'Customerwise Discount'" msgstr "Klijent je obavezan za 'Popust na osnovu Klijenta'" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:885 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:891 #: erpnext/selling/doctype/sales_order/sales_order.py:392 #: erpnext/stock/doctype/delivery_note/delivery_note.py:393 msgid "Customer {0} does not belong to project {1}" msgstr "Klijent {0} ne pripada projektu {1}" +#: erpnext/selling/doctype/customer/customer.py:605 +msgid "Customer {0} has an overdue billing limit. Overdue amount {1} exceeds the allowed threshold {2}." +msgstr "" + #. Label of the customer_item_code (Data) field in DocType 'POS Invoice Item' #. Label of the customer_item_code (Data) field in DocType 'Sales Invoice Item' #. Label of the customer_item_code (Data) field in DocType 'Quotation Item' @@ -15303,7 +15332,7 @@ msgstr "Dobavljač Klijenta" #. Name of a report #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.json msgid "Customer-wise Item Price" -msgstr "Cijena artikla po Klijentu" +msgstr "Cjena artikla po Klijentu" #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:43 msgid "Customer/Lead Name" @@ -15366,7 +15395,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:751 +#: erpnext/projects/doctype/project/project.py:781 msgid "Daily Project Summary for {0}" msgstr "Dnevni sažetak projekta za {0}" @@ -15673,7 +15702,7 @@ msgstr "Debit Iznos u Valuti Transakcije" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:178 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1220 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1222 #: erpnext/controllers/sales_and_purchase_return.py:466 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:304 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45 @@ -15701,13 +15730,13 @@ msgstr "Debit Faktura će ažurirati svoj nepodmireni iznos, čak i ako je naved #. Label of the debit_to (Link) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:769 -#: erpnext/controllers/accounts_controller.py:1287 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:775 +#: erpnext/controllers/accounts_controller.py:1214 msgid "Debit To" msgstr "Debit prema" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:760 msgid "Debit To is required" msgstr "Debit prema je obavezan" @@ -15755,11 +15784,11 @@ msgstr "Koeficijent Kapitalnog Duga" msgid "Debtor Turnover Ratio" msgstr "Koeficijent Obrta Dužnika" -#: erpnext/accounts/party.py:626 +#: erpnext/accounts/party.py:642 msgid "Debtor/Creditor" msgstr "Dužnik/Povjerilac" -#: erpnext/accounts/party.py:629 +#: erpnext/accounts/party.py:645 msgid "Debtor/Creditor Advance" msgstr "Dužnik/Povjerilac Predujam" @@ -15783,7 +15812,7 @@ msgstr "Decilitar" msgid "Decimeter" msgstr "Decimetar" -#: erpnext/public/js/utils/sales_common.js:639 +#: erpnext/public/js/utils/sales_common.js:637 msgid "Declare Lost" msgstr "Prijavi Gubitak" @@ -15814,11 +15843,6 @@ msgstr "Odbijeno od" msgid "Deductee Details" msgstr "Detalji Odbitaka" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/taxes.json -msgid "Deduction Certificate" -msgstr "Verifikat Odbitka" - #. Label of the deductions_or_loss_section (Section Break) field in DocType #. 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -15861,14 +15885,14 @@ msgstr "Standard Račun Predujma" #. Label of the default_advance_paid_account (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:388 +#: erpnext/setup/doctype/company/company.py:390 msgid "Default Advance Paid Account" msgstr "Standard Račun za Predujam Plaćanje" #. Label of the default_advance_received_account (Link) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:377 +#: erpnext/setup/doctype/company/company.py:379 msgid "Default Advance Received Account" msgstr "Standard Račun za Predujam Plaćanje" @@ -15883,9 +15907,9 @@ msgstr "Standard Raspon Starenja" msgid "Default BOM" msgstr "Standard Sastavnica" -#: erpnext/stock/doctype/item/item.py:506 +#: erpnext/stock/doctype/item/item.py:511 msgid "Default BOM ({0}) must be active for this item or its template" -msgstr "Standard Sastavnica ({0}) mora biti aktivna za ovaj artikal ili njegov šablon" +msgstr "Standard Sastavnica ({0}) mora biti aktivna za ovaj artikal ili njegov predložak" #: erpnext/manufacturing/doctype/work_order/mapper.py:87 msgid "Default BOM for {0} not found" @@ -15907,7 +15931,7 @@ msgstr "Standard Bankovni Račun" #. Label of the billing_rate (Currency) field in DocType 'Activity Type' #: erpnext/projects/doctype/activity_type/activity_type.json msgid "Default Billing Rate" -msgstr "Standard Faktura Cijena" +msgstr "Standard Faktura Cjena" #. Label of the buying_price_list (Link) field in DocType 'Buying Settings' #. Label of the default_buying_price_list (Link) field in DocType 'Import @@ -15915,7 +15939,7 @@ msgstr "Standard Faktura Cijena" #: erpnext/buying/doctype/buying_settings/buying_settings.json #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json msgid "Default Buying Price List" -msgstr "Standard Nabavni Cijenovnik" +msgstr "Standard Nabavni Cjenovnik" #. Label of the default_buying_terms (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json @@ -15952,7 +15976,12 @@ msgstr "Standard Račun Troškova Prodanih Proizvoda" #. Label of the costing_rate (Currency) field in DocType 'Activity Type' #: erpnext/projects/doctype/activity_type/activity_type.json msgid "Default Costing Rate" -msgstr "Standard Obračunata Cijena" +msgstr "Standard Obračunata Cjena" + +#. Label of the country (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Country" +msgstr "" #. Label of the default_currency (Link) field in DocType 'Company' #. Label of the default_currency (Link) field in DocType 'Global Defaults' @@ -15964,7 +15993,7 @@ msgstr "Standard Valuta" #. Label of the customer_group (Link) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Default Customer Group" -msgstr "Standardna Grupa Klijenta" +msgstr "Standard Grupa Klijenta" #. Label of the default_deferred_expense_account (Link) field in DocType #. 'Company' @@ -16091,14 +16120,14 @@ msgstr "Standard poruka Zahtjeva za Plaćanje" #: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/supplier_group/supplier_group.json msgid "Default Payment Terms Template" -msgstr "Standard Šablon Uslova Plaćanja" +msgstr "Standard Predložak Uslova Plaćanja" #. Label of the selling_price_list (Link) field in DocType 'Selling Settings' #. Label of the default_price_list (Link) field in DocType 'Customer Group' #: erpnext/selling/doctype/selling_settings/selling_settings.json #: erpnext/setup/doctype/customer_group/customer_group.json msgid "Default Price List" -msgstr "Standard Cijenovnik" +msgstr "Standard Cjenovnik" #. Label of the default_priority (Link) field in DocType 'Service Level #. Agreement' @@ -16118,7 +16147,7 @@ msgstr "Standard Privremeni Račun" #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Default Purchase Price Variance Account" -msgstr "Standard Račun Odstupanja Nabavne Cijene" +msgstr "Standard Račun Odstupanja Nabavne Cjene" #. Label of the purchase_uom (Link) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -16206,17 +16235,17 @@ msgstr "Standard Distrikt" msgid "Default Unit of Measure" msgstr "Standard Jedinica" -#: erpnext/stock/doctype/item/item.py:1428 +#: erpnext/stock/doctype/item/item.py:1433 msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You need to either cancel the linked documents or create a new Item." -msgstr "Standard Jedinica za artikal {0} ne može se promijeniti direktno jer ste već izvršili neke transakcije sa drugom Jedinicom. Morate ili otkazati povezane dokumente ili kreirati novi artikal." +msgstr "Standard Jedinica za artikal {0} ne može se promijeniti direktno jer ste već izvršili neke transakcije sa drugom Jedinicom. Morate ili otkazati povezane dokumente ili izraditi novi artikal." -#: erpnext/stock/doctype/item/item.py:1408 +#: erpnext/stock/doctype/item/item.py:1413 msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM." -msgstr "Standard Jedinica za artikal {0} ne može se promijeniti direktno jer ste već izvršili neke transakcije sa drugom Jedinicom. Morat ćete kreirati novi artikal da biste koristili drugu Jedinicu." +msgstr "Standard Jedinica za artikal {0} ne može se promijeniti direktno jer ste već izvršili neke transakcije sa drugom Jedinicom. Morat ćete izraditi novi artikal da biste koristili drugu Jedinicu." -#: erpnext/stock/doctype/item/item.py:1012 +#: erpnext/stock/doctype/item/item.py:1017 msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'" -msgstr "Standard Jedinica za Varijantu '{0}' mora biti ista kao u Šablonu '{1}'" +msgstr "Standard Jedinica za Varijantu '{0}' mora biti ista kao u Predložku '{1}'" #. Label of the valuation_method (Select) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json @@ -16230,7 +16259,7 @@ msgstr "Standard Metoda Vrijednovanja" #. Label of the set_warehouse (Link) field in DocType 'Stock Reconciliation' #. Label of the default_warehouse (Link) field in DocType 'Stock Settings' #: erpnext/manufacturing/doctype/bom/bom.json -#: erpnext/stock/doctype/item/item.js:957 +#: erpnext/stock/doctype/item/item.js:978 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json #: erpnext/stock/doctype/stock_settings/stock_settings.json @@ -16266,10 +16295,10 @@ msgstr "Standard postavke za vaše transakcije vezane za zalihe" #: erpnext/setup/doctype/company/company.js:207 msgid "Default tax templates for sales, purchase and items are created." -msgstr "Standard šabloni PDV-a za prodaju, nabavu i artikle su kreirani." +msgstr "Standard predlošci PDV-a za prodaju, nabavu i artikle su izrađeni." -#: erpnext/stock/doctype/item/item.js:949 -#: erpnext/stock/doctype/item/item.js:961 +#: erpnext/stock/doctype/item/item.js:970 +#: erpnext/stock/doctype/item/item.js:982 msgid "Default warehouse from Item Defaults." msgstr "Standard Skladište iz Standard Postavki Artikala." @@ -16517,7 +16546,7 @@ msgstr "Dostavi Sekundarne Artikle" #. Order' #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/buying/doctype/purchase_order/purchase_order_list.js:20 -#: erpnext/controllers/website_list_for_contact.py:216 +#: erpnext/controllers/website_list_for_contact.py:218 #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/shipment/shipment.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -16629,7 +16658,7 @@ msgstr "Dostava" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:908 +#: erpnext/public/js/utils.js:920 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16691,7 +16720,7 @@ msgstr "Upravitelj Dostave" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:59 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:152 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:134 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Delivery Note" @@ -16734,11 +16763,11 @@ msgstr "Paket Artikal Dostavnice" msgid "Delivery Note Trends" msgstr "Trendovi Dostave" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028 msgid "Delivery Note {0} is not submitted" msgstr "Dostavnica {0} nije podnešena" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1240 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75 msgid "Delivery Notes" msgstr "Dostavnice" @@ -16855,7 +16884,7 @@ msgstr "Demo Poduzeće" #: erpnext/setup/demo.py:51 msgid "Demo Data creation failed." -msgstr "Kreiranje demo podataka nije uspjelo." +msgstr "Izrada demo podataka nije uspjelo." #: erpnext/public/js/utils/demo.js:25 msgid "Demo data cleared" @@ -16863,7 +16892,7 @@ msgstr "Demo podaci su obrisani" #: erpnext/setup/demo.py:42 msgid "Demo data creation failed. Check notifications for more info." -msgstr "Kreiranje demo podataka nije uspjelo. Provjerite obavještenja za više informacija." +msgstr "Izrada demo podataka nije uspjelo. Provjeri obavještenja za više informacija." #: erpnext/setup/setup_wizard/data/industry_type.txt:18 msgid "Department Stores" @@ -16887,7 +16916,7 @@ msgstr "Zavisni Zadatak" #: erpnext/projects/doctype/task/task.py:179 msgid "Dependent Task {0} is not a Template Task" -msgstr "Zavisni Zadatak {0} nije Šablon Zadatak" +msgstr "Zavisni Zadatak {0} nije Predložak Zadatak" #. Label of the depends_on (Table) field in DocType 'Task' #: erpnext/projects/doctype/task/task.json @@ -16946,7 +16975,7 @@ msgstr "Iznos Amortizacije" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:109 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181 #: erpnext/accounts/report/account_balance/account_balance.js:44 -#: erpnext/accounts/report/cash_flow/cash_flow.py:170 +#: erpnext/accounts/report/cash_flow/cash_flow.py:186 #: erpnext/assets/doctype/asset/asset.json msgid "Depreciation" msgstr "Amortizacija" @@ -16954,7 +16983,7 @@ msgstr "Amortizacija" #. Label of the depreciation_amount (Currency) field in DocType 'Depreciation #. Schedule' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:167 -#: erpnext/assets/doctype/asset/asset.js:384 +#: erpnext/assets/doctype/asset/asset.js:392 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Depreciation Amount" msgstr "Iznos Amortizacije" @@ -17037,7 +17066,7 @@ msgstr "Opcije Amortizacije" msgid "Depreciation Posting Date" msgstr "Datum Knjiženja Amortizacije" -#: erpnext/assets/doctype/asset/asset.js:928 +#: erpnext/assets/doctype/asset/asset.js:936 msgid "Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Datum knjiženja amortizacije ne može biti prije Datuma raspoloživosti za upotrebu" @@ -17106,7 +17135,7 @@ msgstr "Dizajner" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:618 +#: erpnext/public/js/utils/sales_common.js:616 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Detaljan Razlog" @@ -17309,6 +17338,10 @@ msgstr "Pomoć Filter Dimenzije" msgid "Dimension Name" msgstr "Naziv Dimenzije" +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 +msgid "Dimension-based grouping is currently unsupported in Custom Financial Report" +msgstr "Grupisanje po Dimenzijama trenutno nije podržano u Prilagođenom Finansijskom Izvještaju" + #. Name of a report #: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.json msgid "Dimension-wise Accounts Balance Report" @@ -17340,25 +17373,6 @@ msgstr "Direktni Prihod" msgid "Direct return is not allowed for Timesheet." msgstr "Direktan povrat nije dozvoljen za Radni List." -#. Label of the disabled (Check) field in DocType 'Account' -#. Label of the disabled (Check) field in DocType 'Accounting Dimension' -#. Label of the disable (Check) field in DocType 'Pricing Rule' -#. Label of the disable (Check) field in DocType 'Promotional Scheme' -#. Label of the disable (Check) field in DocType 'Promotional Scheme Price -#. Discount' -#. Label of the disable (Check) field in DocType 'Promotional Scheme Product -#. Discount' -#. Label of the disable (Check) field in DocType 'Putaway Rule' -#: erpnext/accounts/doctype/account/account.json -#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json -#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.json -msgid "Disable" -msgstr "Onemogući" - #. Label of the disable_capacity_planning (Check) field in DocType #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json @@ -17428,13 +17442,13 @@ msgstr "Onemogući Transakcijski Prag" #. Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Disable last purchase rate" -msgstr "Onemogući posljednju Nabavnu Cijenu" +msgstr "Onemogući posljednju Nabavnu Cjenu" #. Description of the 'Disabled' (Check) field in DocType 'Financial Report #. Template' #: erpnext/accounts/doctype/financial_report_template/financial_report_template.json msgid "Disable template to prevent use in reports" -msgstr "Onemogući šablon da biste spriječili njegovu upotrebu u izvještajima" +msgstr "Onemogući predložak da biste spriječili njegovu upotrebu u izvještajima" #: erpnext/accounts/services/gl_validator.py:35 msgid "Disabled Account Selected" @@ -17460,7 +17474,7 @@ msgstr "Onemogućeni artikli se ne mogu odabrati ni u jednoj transakciji." #: erpnext/accounts/services/internal_transfer.py:120 msgid "Disabled pricing rules since this {0} is an internal transfer" -msgstr "Pravila određivanja cijena su onemogućena jer je ovo {0} interni prijenos" +msgstr "Pravila određivanja cjena su onemogućena jer je ovo {0} interni prijenos" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json @@ -17469,11 +17483,11 @@ msgstr "Onemogućeni dobavljači su skriveni od odabira u novim transakcijama, a #: erpnext/accounts/services/internal_transfer.py:136 msgid "Disabled tax included prices since this {0} is an internal transfer" -msgstr "Cijene bez PDV-a budući da je ovo {0} interni prijenos" +msgstr "Cjene bez PDV-a budući da je ovo {0} interni prijenos" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" -msgstr "Onemogućeni šablon ne smije biti standard šablon" +msgstr "Onemogućeni predložak ne smije biti standard predložak" #. Description of the 'Scan Mode' (Check) field in DocType 'Stock #. Reconciliation' @@ -17483,9 +17497,9 @@ msgstr "Onemogućuje automatsko preuzimanje postojeće količine" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' -#: erpnext/manufacturing/doctype/work_order/work_order.js:1077 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:392 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:435 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1081 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:391 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:434 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Disassemble" @@ -17556,7 +17570,7 @@ msgstr "Popust (%)" #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Discount (%) on Price List Rate with Margin" -msgstr "Popust (%) na cjenu Cijenovnika sa Maržom" +msgstr "Popust (%) na cjenu Cjenovnika sa Maržom" #. Label of the additional_discount_account (Link) field in DocType 'Sales #. Invoice' @@ -17718,7 +17732,7 @@ msgstr "Popust ne može biti veći od 100%." msgid "Discount must be less than 100" msgstr "Popust mora biti manji od 100%" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3095 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3096 msgid "Discount of {0} applied as per Payment Term" msgstr "Popust od {0} primjenjen prema Uslovima Plaćanja" @@ -17744,7 +17758,7 @@ msgstr "Popust na" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Discount on Price List Rate (%)" -msgstr "Popust na Cijenu Cijenovnika (%)" +msgstr "Popust na Cjenu Cjenovnika (%)" #. Label of the discounted_amount (Currency) field in DocType 'Overdue Payment' #. Label of the discounted_amount (Currency) field in DocType 'Payment @@ -17790,7 +17804,7 @@ msgstr "Diskrecijski Razlog" msgid "Dislikes" msgstr "Ne sviđa mi se" -#: erpnext/setup/doctype/company/company.py:549 +#: erpnext/setup/doctype/company/company.py:551 msgid "Dispatch" msgstr "Otprema" @@ -17829,7 +17843,7 @@ msgstr "Naziv Otpremne Adrese" #. Label of the dispatch_address (Link) field in DocType 'Purchase Receipt' #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Dispatch Address Template" -msgstr "Šablon Otpremne Adrese" +msgstr "Predložak Otpremne Adrese" #. Label of the section_break_9 (Section Break) field in DocType 'Delivery #. Stop' @@ -17853,7 +17867,7 @@ msgstr "Prilog Otpremnog Obaveštenja" #. Label of the dispatch_template (Link) field in DocType 'Delivery Settings' #: erpnext/stock/doctype/delivery_settings/delivery_settings.json msgid "Dispatch Notification Template" -msgstr "Šablon Otpremnog Obaveštenja" +msgstr "Predložak Otpremnog Obaveštenja" #. Label of the sb_dispatch (Section Break) field in DocType 'Delivery #. Settings' @@ -18022,7 +18036,7 @@ msgstr "Ne Koristi Šaržno Vrijednovanje" #. DocType 'Stock Reposting Settings' #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json msgid "Do not fetch incoming rate from Serial No" -msgstr "Ne preuzimaj nabavnu cijenu iz Serijskog Broja" +msgstr "Ne preuzimaj nabavnu cjenu iz Serijskog Broja" #. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import #. Log Column Map' @@ -18030,7 +18044,7 @@ msgstr "Ne preuzimaj nabavnu cijenu iz Serijskog Broja" msgid "Do not import" msgstr "Ne uvozi" -#. Description of the 'Hide Currency Symbol' (Select) field in DocType 'Global +#. Description of the 'Hide Currency Symbol' (Check) field in DocType 'Global #. Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "Do not show any symbol like $ etc next to currencies." @@ -18040,7 +18054,7 @@ msgstr "Ne prikazuj nijedan simbol poput $ itd. pored valuta." #. field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Do not update Serial / Batch on creation of auto bundle" -msgstr "Ne ažuriraj Serijski / Šaržu pri kreiranju Automatskog Paketa" +msgstr "Ne ažuriraj Serijski / Šaržu pri izradi Automatskog Paketa" #. Label of the do_not_update_variants (Check) field in DocType 'Item Variant #. Settings' @@ -18054,7 +18068,7 @@ msgstr "Ne ažuriraj varijante prilikom spremanja" msgid "Do not use Batch-wise Valuation" msgstr "Ne koristi Šaržno Vrijednovanje" -#: erpnext/assets/doctype/asset/asset.js:966 +#: erpnext/assets/doctype/asset/asset.js:974 msgid "Do you really want to restore this scrapped asset?" msgstr "Da li zaista želite vratiti ovu rashodovan imovinu?" @@ -18062,11 +18076,7 @@ msgstr "Da li zaista želite vratiti ovu rashodovan imovinu?" msgid "Do you still want to enable immutable ledger?" msgstr "Želite li i dalje omogućiti nepromjenjivo knjigovodstvo?" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:109 -msgid "Do you still want to enable negative inventory?" -msgstr "Želite li i dalje omogućiti negativne zalihe?" - -#: erpnext/stock/doctype/item/item.js:42 +#: erpnext/stock/doctype/item/item.js:44 msgid "Do you want to change valuation method?" msgstr "Želite li promijeniti metodu vrednovanja?" @@ -18074,7 +18084,7 @@ msgstr "Želite li promijeniti metodu vrednovanja?" msgid "Do you want to notify all the customers by email?" msgstr "Želite li obavijestiti sve Kliente putem e-pošte?" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:334 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:360 msgid "Do you want to submit the material request" msgstr "Želiš li podnijeti Materijalni Nalog" @@ -18194,7 +18204,7 @@ msgstr "Dvostruko Opadajuće Stanje" #: erpnext/public/js/utils/serial_no_batch_selector.js:247 msgid "Download CSV Template" -msgstr "Preuzmite CSV Šablon" +msgstr "Preuzmite CSV Predložak" #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:145 msgid "Download PDF for Supplier" @@ -18318,23 +18328,21 @@ msgstr "Ispustite datoteku ovdje ili kliknite da biste odabrali datoteku" msgid "Drop some files here, or click to select files" msgstr "Iispustite neke datoteke ovdje ili kliknite da biste odabrali datoteke" -#: erpnext/accounts/party.py:719 +#: erpnext/accounts/party.py:735 msgid "Due Date cannot be after {0}" msgstr "Datum Dospijeća ne može biti nakon {0}" -#: erpnext/accounts/party.py:695 +#: erpnext/accounts/party.py:711 msgid "Due Date cannot be before {0}" msgstr "Datum Dospijeća ne može biti prije {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:167 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:175 msgid "Due to stock closing entry {0}, you cannot repost item valuation before {1}" msgstr "Zbog unosa zatvaranja zaliha {0}, ne možete ponovo objaviti procjenu artikla prije {1}" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/dunning/dunning.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:158 -#: erpnext/workspace_sidebar/banking.json msgid "Dunning" msgstr "Opomena" @@ -18366,6 +18374,14 @@ msgstr "Pismo Opomene" msgid "Dunning Letter Text" msgstr "Tekst Pisma Opomene" +#: erpnext/accounts/doctype/dunning/dunning.py:184 +msgid "Dunning Letter for Dunning Type {0} in language '{1}' not found." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.py:188 +msgid "Dunning Letter for Dunning Type {0} not found." +msgstr "" + #. Label of the dunning_level (Int) field in DocType 'Overdue Payment' #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json msgid "Dunning Level" @@ -18374,10 +18390,8 @@ msgstr "Nivo Opomene" #. Label of the dunning_type (Link) field in DocType 'Dunning' #. Name of a DocType #. Label of the dunning_type (Data) field in DocType 'Dunning Type' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/dunning/dunning.json #: erpnext/accounts/doctype/dunning_type/dunning_type.json -#: erpnext/workspace_sidebar/banking.json msgid "Dunning Type" msgstr "Tip Opomene" @@ -18391,7 +18405,7 @@ msgstr "Dupliciraj DocType" #: erpnext/setup/doctype/authorization_rule/authorization_rule.py:69 msgid "Duplicate Entry. Please check Authorization Rule {0}" -msgstr "Kopiraj Unosa. Molimo provjerite pravilo Autorizacije {0}" +msgstr "Kopiraj Unosa. Provjeri pravilo Autorizacije {0}" #: erpnext/assets/doctype/asset/asset.py:418 msgid "Duplicate Finance Book" @@ -18431,7 +18445,7 @@ msgstr "Kopiraj Projekt sa Zadatcima" msgid "Duplicate Sales Invoices found" msgstr "Pronađeni su duplikati Prodajnih Faktura" -#: erpnext/stock/serial_batch_bundle.py:1522 +#: erpnext/stock/serial_batch_bundle.py:1528 msgid "Duplicate Serial Number Error" msgstr "Greška dupliciranog serijskog broja" @@ -18455,9 +18469,13 @@ msgstr "Dupliciraj unos: {0}{1}" msgid "Duplicate item group found in the item group table" msgstr "Dupla grupa artikalai pronađena je u tabeli grupe artikla" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:133 +msgid "Duplicate languages found on Dunning Letter Text. Keep only one of them." +msgstr "" + #: erpnext/projects/doctype/project/project.js:186 msgid "Duplicate project has been created" -msgstr "Kopija Projekta je kreirana" +msgstr "Kopija Projekta je izrađena" #: erpnext/utilities/transaction_base.py:112 msgid "Duplicate row {0} with same {1}" @@ -18486,7 +18504,7 @@ msgstr "Carine Porezi i PDV" #. Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Dynamic Condition" -msgstr "Dinamički Uvjet" +msgstr "Dinamički Uslov" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json @@ -18529,6 +18547,7 @@ msgstr "EMU struje" #. Label of a Desktop Icon #: erpnext/desktop_icon/erpnext.json +#: erpnext/public/js/shop_floor/shop_floor.js:103 msgid "ERPNext" msgstr "Sistem" @@ -18585,7 +18604,7 @@ msgstr "Uredi Kapacitet" msgid "Edit Cart" msgstr "Uredi Korpu" -#: erpnext/controllers/item_variant.py:212 +#: erpnext/controllers/item_variant.py:274 msgid "Edit Not Allowed" msgstr "Uređivanje nije dozvoljeno" @@ -18799,11 +18818,11 @@ msgstr "E-pošta poslana Dobavljaču {0}" #: erpnext/setup/doctype/employee/employee.py:443 msgid "Email is required to create a user" -msgstr "Za kreiranje korisnika obaveza je e-pošta" +msgstr "Za izradu korisnika obaveza je e-pošta" #: erpnext/setup/doctype/employee/employee.js:72 msgid "Email is required to create a user." -msgstr "Za kreiranje korisnika obaveza je e-pošta." +msgstr "Za izradu korisnika obaveza je e-pošta." #: erpnext/stock/doctype/shipment/shipment.js:174 msgid "Email or Phone/Mobile of the Contact are mandatory to continue." @@ -18880,7 +18899,7 @@ msgstr "Hitni Telefon" #: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:24 #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:10 #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:45 -#: erpnext/public/js/shop_floor/shop_floor.js:690 +#: erpnext/public/js/shop_floor/shop_floor.js:726 #: erpnext/quality_management/doctype/non_conformance/non_conformance.json #: erpnext/setup/doctype/company/company.json #: erpnext/setup/doctype/department/department.json @@ -18895,44 +18914,44 @@ msgstr "Hitni Telefon" #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/telephony/doctype/call_log/call_log.json msgid "Employee" -msgstr "Personal" +msgstr "Osoblje" #. Label of the employee_link (Link) field in DocType 'Supplier Scorecard #. Scoring Standing' #: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json msgid "Employee " -msgstr "Personal " +msgstr "Osoblje " #. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry #. Account' #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json msgid "Employee Advance" -msgstr "Predujam Personala" +msgstr "Predujam Osoblja" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:26 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:37 msgid "Employee Advances" -msgstr "Predujam Personala" +msgstr "Predujam Osoblja" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:188 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:327 msgid "Employee Benefits Obligation" -msgstr "Obaveza Beneficija Personala" +msgstr "Obaveza Pogodnosti Osoblja" #. Label of the employee_detail (Section Break) field in DocType 'Timesheet' #: erpnext/projects/doctype/timesheet/timesheet.json msgid "Employee Detail" -msgstr "Detalji Personala" +msgstr "Detalji Osoblja" #. Name of a DocType #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Employee Education" -msgstr "Obuka Personala" +msgstr "Obuka Osoblja" #. Name of a DocType #: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json msgid "Employee External Work History" -msgstr "Eksterna Radna Historija Personala" +msgstr "Vanjska Radna Historija Osoblja" #. Label of the employee_group (Link) field in DocType 'Communication Medium #. Timeslot' @@ -18940,21 +18959,21 @@ msgstr "Eksterna Radna Historija Personala" #: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json #: erpnext/setup/doctype/employee_group/employee_group.json msgid "Employee Group" -msgstr "Grupa Personala" +msgstr "Grupa Osoblja" #. Name of a DocType #: erpnext/setup/doctype/employee_group_table/employee_group_table.json msgid "Employee Group Table" -msgstr "Tabela Grupe Personala" +msgstr "Tabela Grupe Osoblja" #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:33 msgid "Employee ID" -msgstr "ID Personala" +msgstr "ID Osoblja" #. Name of a DocType #: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json msgid "Employee Internal Work History" -msgstr "Eksterna Radna Historija Personala" +msgstr "Unutarnja Radna Historija Osoblja" #. Label of the employee_name (Data) field in DocType 'Activity Cost' #. Label of the employee_name (Data) field in DocType 'Timesheet' @@ -18965,50 +18984,50 @@ msgstr "Eksterna Radna Historija Personala" #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:53 #: erpnext/setup/doctype/employee_group_table/employee_group_table.json msgid "Employee Name" -msgstr "Ime Personala" +msgstr "Ime Osoblja" #. Label of the employee_number (Data) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Employee Number" -msgstr "Broj Personala" +msgstr "Broj Osoblja" #. Label of the employee_user_id (Link) field in DocType 'Call Log' #: erpnext/telephony/doctype/call_log/call_log.json msgid "Employee User Id" -msgstr "Korisnički ID Personala" +msgstr "Korisnički ID Osoblja" #: erpnext/setup/doctype/employee/employee.py:333 msgid "Employee cannot report to himself." -msgstr "Personal ne može da izvještava sam sebe." +msgstr "Osoblje ne može da izvještava samo sebe." #: erpnext/setup/doctype/employee/employee.py:583 msgid "Employee is required" -msgstr "Potreban je Personal" +msgstr "Osoblje je obavezno" #: erpnext/assets/doctype/asset_movement/asset_movement.py:109 msgid "Employee is required while issuing Asset {0}" -msgstr "Personal je obavezan prilikom izdavanja Imovine {0}" +msgstr "Osoblje je obavezno prilikom izdavanja Imovine {0}" #: erpnext/setup/doctype/employee/employee.py:440 msgid "Employee {0} already has a linked user" -msgstr "Personal {0} već ima povezanog korisnika" +msgstr "Osoblje {0} već ima povezanog korisnika" #: erpnext/assets/doctype/asset_movement/asset_movement.py:92 #: erpnext/assets/doctype/asset_movement/asset_movement.py:113 msgid "Employee {0} does not belong to the company {1}" -msgstr "Personal {0} ne pripada {1}" +msgstr "Osoblje {0} ne pripada {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:411 msgid "Employee {0} is currently working on another workstation. Please assign another employee." -msgstr "{0} trenutno radi na drugoj radnoj stanici. Dodijeli drugi personal." +msgstr "{0} trenutno radi na drugoj radnoj stanici. Dodijeli drugo osoblje." #: erpnext/setup/doctype/employee/employee.py:608 msgid "Employee {0} not found" -msgstr "Personal {0} nije pronađen" +msgstr "Osoblje {0} nije pronađeno" -#: erpnext/public/js/shop_floor/shop_floor.js:684 +#: erpnext/public/js/shop_floor/shop_floor.js:720 msgid "Employees" -msgstr "Personal" +msgstr "Osoblje" #: erpnext/stock/doctype/batch/batch_list.js:16 msgid "Empty" @@ -19033,7 +19052,7 @@ msgstr "Omogući {0} u Postavkama Artikla da biste nastavili s {1} kontro msgid "Enable Accounting Dimensions" msgstr "Omogući Knjigovodstvene Dimenzije" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1743 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1754 msgid "Enable Allow Partial Reservation in the Stock Settings to reserve partial stock." msgstr "Omogući Dozvoli Djelomičnu Rezervaciju u Postavkama Zaliha da rezervišete djelomične zalihe." @@ -19049,7 +19068,7 @@ msgstr "Omogući Zakazivanje Termina" msgid "Enable Auto Email" msgstr "Omogući Automatsku e-poštu" -#: erpnext/stock/doctype/item/item.py:1216 +#: erpnext/stock/doctype/item/item.py:1221 msgid "Enable Auto Re-Order" msgstr "Omogući Automatsku Ponovnu Naložbu" @@ -19142,7 +19161,13 @@ msgstr "Omogući Program Bodova Lojalnosti" #. DocType 'CRM Settings' #: erpnext/crm/doctype/crm_settings/crm_settings.json msgid "Enable Opportunity Creation from Contact Us" -msgstr "Omogući Kreiranje Prilika iz Kontaktiraj Nas obrasca" +msgstr "Omogući Izrada Prilika iz Kontaktiraj Nas obrasca" + +#. Label of the enable_overdue_billing_threshold (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Overdue Billing Threshold" +msgstr "" #. Label of the enable_parallel_reposting (Check) field in DocType 'Stock #. Reposting Settings' @@ -19213,13 +19238,13 @@ msgstr "Omogući automatsko usklađivanje stranki" #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Enable cost center, projects and other custom accounting dimensions" -msgstr "Omogućite troškovni centar, projekte i druge prilagođene knjigovodstvene dimenzije" +msgstr "Omogući troškovni centar, projekte i druge prilagođene knjigovodstvene dimenzije" #. Label of the enable_cutoff_date_on_bulk_delivery_note_creation (Check) field #. in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Enable cut-off date on creating bulk Delivery Notes" -msgstr "Omogući krajnji rok za kreiranje masovnih otpremnica" +msgstr "Omogući krajnji rok za izradu masovnih otpremnica" #. Label of the enable_discount_accounting (Check) field in DocType 'Selling #. Settings' @@ -19236,18 +19261,18 @@ msgstr "Omogući za sirovine koje se koriste u Sastavnici. Poništi odabir za do #. Description of the 'Is Subcontracted Item' (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Enable if a vendor manufactures this item for you. You can choose to provide them raw materials using the default BOM." -msgstr "Omogućite ako dobavljač proizvodi ovaj artikal za vas. Možete odabrati da im osigurate sirovine koristeći zadanu Sastavnicu." +msgstr "Omogući ako dobavljač proizvodi ovaj artikal za vas. Možete odabrati da im osigurate sirovine koristeći standard Sastavnicu." #. Description of the 'Is Fixed Asset' (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Enable if this item is a company asset like machinery or furniture." -msgstr "Omogućite ako je ovaj predmet imovina poduzeća, poput mašina ili namještaja." +msgstr "Omogući ako je ovaj predmet imovina poduzeća, poput mašina ili namještaja." #. Description of the 'Is Customer Provided Item' (Check) field in DocType #. 'Item' #: erpnext/stock/doctype/item/item.json msgid "Enable if this item is provided by a customer and received via Stock Entry." -msgstr "Omogućite ako je ovaj artikal isporučen od strane klijenta i primljena putem unosa zaliha." +msgstr "Omogući ako je ovaj artikal isporučen od strane klijenta i primljena putem unosa zaliha." #. Description of the 'Consider Rejected Warehouses' (Check) field in DocType #. 'Pick List' @@ -19268,13 +19293,13 @@ msgstr "Omogući Rezervaciju Zaliha" #. Description of the 'Has Priority' (Check) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Enable this checkbox even if you want to set the zero priority" -msgstr "Omogući ovo polje ako želite da postavite nulti prioritet" +msgstr "Omogući ovo polje ako želite da postavi nulti prioritet" #. Description of the 'Use legacy Budget Controller' (Check) field in DocType #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Enable this if you are experiencing issues with the new budget controller. Uses the older budget validation logic" -msgstr "Omogućite ovo ako imate problema s novim kontrolerom proračuna. Koristi stariju logiku validacije proračuna." +msgstr "Omogući ovo ako imate problema s novim kontrolerom proračuna. Koristi stariju logiku validacije proračuna." #. Description of the 'Calculate daily depreciation using total days in #. depreciation period' (Check) field in DocType 'Accounts Settings' @@ -19286,13 +19311,13 @@ msgstr "Omogući ovu opciju za izračunavanje dnevne amortizacije uzimajući u o #. 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Enable this option to permit the use of negative rates for items in sales transactions. This setting is useful for applying substantial discounts, processing refunds or returns, and handling special promotional pricing." -msgstr "Omogućite ovu opciju kako biste dozvolili upotrebu negativnih cijena za artiklee u prodajnim transakcijama. Ova postavka je korisna za primjenu značajnih popusta, obradu povrata novca ili vraćanja robe te za rukovanje posebnim promotivnim cijenama." +msgstr "Omogući ovu opciju kako biste dozvolili upotrebu negativnih cjena za artiklee u prodajnim transakcijama. Ova postavka je korisna za primjenu značajnih popusta, obradu povrata novca ili vraćanja robe te za rukovanje posebnim promotivnim cjenama." #. Description of the 'Validate selling price for Item against purchase or #. valuation rate' (Check) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Enable this to block transactions where the selling price is less than the purchase or valuation rate" -msgstr "Omogućite ovo da blokira transakcije u kojima je prodajna cijena manja od cijene nabave ili procjene" +msgstr "Omogući ovo da blokira transakcije u kojima je prodajna cjena manja od cjene nabave ili procjene" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:34 msgid "Enable to apply SLA on every {0}" @@ -19301,12 +19326,12 @@ msgstr "Omogući primjenu Standardnog Nivoa Servisa na svaki {0}" #. Description of the 'Is Transporter' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Enable to make this supplier selectable as a transporter on Delivery Notes and Stock Entries" -msgstr "Omogućite odabir ovog dobavljača kao prevoznika na otpremnicama i unosima zaliha" +msgstr "Omogući odabir ovog dobavljača kao prevoznika na otpremnicama i unosima zaliha" #. Description of the 'Retain Sample' (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Enable to reserve a small sample from each batch for any analysis arising ahead" -msgstr "Omogućite rezerviranje malog broja uzorka iz svake šarže za bilo kakvu analizu koja se dogodi u budućnosti" +msgstr "Omogući rezerviranje malog broja uzorka iz svake šarže za bilo kakvu analizu koja se dogodi u budućnosti" #. Label of the enable_tracking_sales_commissions (Check) field in DocType #. 'Selling Settings' @@ -19342,7 +19367,7 @@ msgstr "Omogućavanje ove opcije omogućit će vam zapisivanje -
1. Pre #. account ' (Check) field in DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Enabling this will allow creation of multi-currency invoices against single party account in company currency" -msgstr "Omogućavanje će omogućiti kreiranje viševalutnih faktura na račun jedne stranke u valuti poduzeća" +msgstr "Omogućavanje će omogućiti izradu viševalutnih faktura na račun jedne stranke u valuti poduzeća" #: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:22 msgid "Enabling this will change the way how cancelled transactions are handled." @@ -19360,9 +19385,9 @@ msgid "Enabling this will do the following:\n" msgstr "Omogućavanje ovoga će učiniti sljedeće:\n" "\n" "
\n" -"Napomena: Ako je ovo omogućeno, ažuriranje cjene artikala u paketu u tabeli artikala neće promijeniti njegovu cijenu. Cijena će se vratiti na cijenu zasnovanu na podređenim artiklima prilikom spremanja dokumenta." +"Napomena: Ako je ovo omogućeno, ažuriranje cjene artikala u paketu u tabeli artikala neće promijeniti njegovu cjenu. Cjena će se vratiti na cjenu zasnovanu na podređenim artiklima prilikom spremanja dokumenta." #. Label of the encashment_date (Date) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -19373,8 +19398,8 @@ msgstr "Datum Uplate" msgid "End Date cannot be before Start Date." msgstr "Datum završetka ne može biti prije datuma početka." -#: erpnext/public/js/shop_floor/shop_floor.js:880 -#: erpnext/public/js/templates/shop_floor_template.html:766 +#: erpnext/public/js/shop_floor/shop_floor.js:916 +#: erpnext/public/js/templates/shop_floor_template.html:786 msgid "End Session" msgstr "Završi Sesiju" @@ -19385,14 +19410,14 @@ msgstr "Završi Sesiju" #: erpnext/manufacturing/doctype/job_card/job_card.js:331 #: erpnext/manufacturing/doctype/job_card/job_card.js:399 #: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json -#: erpnext/public/js/shop_floor/shop_floor.js:815 +#: erpnext/public/js/shop_floor/shop_floor.js:851 #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json #: erpnext/support/doctype/service_day/service_day.json #: erpnext/telephony/doctype/call_log/call_log.json msgid "End Time" msgstr "Vrijeme Završetka" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:367 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:366 msgid "End Transit" msgstr "Završi Tranzit" @@ -19404,11 +19429,11 @@ msgstr "Završi Tranzit" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:25 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:147 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:89 -#: erpnext/public/js/financial_statements.js:443 +#: erpnext/public/js/financial_statements.js:480 msgid "End Year" msgstr "Kraj Godine" -#: erpnext/accounts/report/financial_statements.py:133 +#: erpnext/accounts/report/financial_statements.py:310 msgid "End Year cannot be before Start Year" msgstr "Kraj Godina ne može biti prije Početka Godine" @@ -19427,7 +19452,7 @@ msgstr "Datum završetka tekućeg perioda fakture" msgid "End of Life" msgstr "Upotrebno Do" -#: erpnext/public/js/shop_floor/shop_floor.js:1378 +#: erpnext/public/js/shop_floor/shop_floor.js:1413 msgid "End session for active job" msgstr "Završi sesiju za aktivnu radnju" @@ -19492,11 +19517,11 @@ msgstr "Unesi Detalje Posjete" #: erpnext/manufacturing/doctype/routing/routing.js:88 msgid "Enter a name for Routing." -msgstr "Unesi Naziv za Redoslijed Operacija." +msgstr "Unesi Naziv za Redoslijed Radnji." #: erpnext/manufacturing/doctype/operation/operation.js:20 msgid "Enter a name for the Operation, for example, Cutting." -msgstr "Unesi naziv za Operaciju, na primjer, Rezanje." +msgstr "Unesi naziv za Radnju, na primjer, Rezanje." #: erpnext/setup/doctype/holiday_list/holiday_list.js:50 msgid "Enter a name for this Holiday List." @@ -19506,7 +19531,7 @@ msgstr "Unesi naziv za ovu Listu Praznika." msgid "Enter amount to be redeemed." msgstr "Unesi iznos koji želite iskoristiti." -#: erpnext/stock/doctype/item/item.js:1556 +#: erpnext/stock/doctype/item/item.js:1577 msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field." msgstr "Unesi Kod Artikla, ime će se automatski popuniti isto kao kod artikla kada kliknete unutar polja Naziv Artikla." @@ -19518,7 +19543,7 @@ msgstr "Unesi E-poštu Klijenta" msgid "Enter customer's phone number" msgstr "Unesi broj telefona Klijenta" -#: erpnext/assets/doctype/asset/asset.js:937 +#: erpnext/assets/doctype/asset/asset.js:945 msgid "Enter date to scrap asset" msgstr "Unesi datum za rashodovanje Imovine" @@ -19546,13 +19571,13 @@ msgstr "Unesi šifru artikla koju ovaj klijent koristi kod sebe. To će biti pri #: erpnext/manufacturing/doctype/routing/routing.js:93 msgid "Enter the Operation, the table will fetch the Operation details like Hourly Rate, Workstation automatically.\n\n" " After that, set the Operation Time in minutes and the table will calculate the Operation Costs based on the Hourly Rate and Operation Time." -msgstr "Unesi Operaciju, tabela će automatski preuzeti detalje Operacije kao što su Satnica, Radna Stanica.\n\n" -" Nakon toga postavite vrijeme Operacije u minutama i tabela će izračunati troškove Operacije na temelju Satnice i vremena Operacije." +msgstr "Unesi Radnju, tabela će automatski preuzeti detalje Radnje kao što su Satnica, Radna Stanica.\n\n" +" Nakon toga postavi vrijeme Radnje u minutama i tabela će izračunati troškove Radnje na temelju Satnice i vremena Radnje." #: banking/src/components/features/BankReconciliation/BankBalance.tsx:250 msgctxt "Do MMM YYYY" msgid "Enter the closing balance you see in your bank statement for {0} as of the {1}" -msgstr "Unesite završno stanje koje vidite na bankovnom izvodu za {0} zaključno sa {1}" +msgstr "Unesi završno stanje koje vidite na bankovnom izvodu za {0} zaključno sa {1}" #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:53 msgid "Enter the name of the Beneficiary before submitting." @@ -19562,15 +19587,15 @@ msgstr "Unesi ime Korisnika prije podnošenja." msgid "Enter the name of the bank or lending institution before submitting." msgstr "Unesi naziv banke ili kreditne institucije prije podnošenja." -#: erpnext/stock/doctype/item/item.js:1582 +#: erpnext/stock/doctype/item/item.js:1603 msgid "Enter the opening stock units." msgstr "Unesi početne jedinice zaliha." -#: erpnext/manufacturing/doctype/bom/bom.js:995 +#: erpnext/manufacturing/doctype/bom/bom.js:999 msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials." msgstr "Unesi količinu artikla koja će biti proizvedena iz ovog Spiska Materijala." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1243 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1254 msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set." msgstr "Unesi količinu za proizvodnju. Artikal sirovina će se preuzimati samo kada je ovo podešeno." @@ -19617,7 +19642,7 @@ msgstr "Tip Unosa" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:275 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Kapital" @@ -19641,7 +19666,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Opis Greške" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:317 msgid "Error Occurred" msgstr "Došlo je do Greške" @@ -19673,7 +19698,7 @@ msgstr "Greška prilikom knjiženja unosa amortizacije" msgid "Error while processing deferred accounting for {0}" msgstr "Greška prilikom obrade odgođenog knjiženja za {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:762 msgid "Error while reposting item valuation" msgstr "Greška prilikom ponovnog knjiženja vrijednosti artikla" @@ -19710,7 +19735,7 @@ msgstr "Očekivani Trošak" #. Order Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Estimated Time and Cost" -msgstr "Procijenjeno Vrijeme i Cijena" +msgstr "Procijenjeno Vrijeme i Cjena" #. Label of the period (Select) field in DocType 'Supplier Scorecard' #: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json @@ -19719,7 +19744,7 @@ msgstr "Period Evaluacije" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:87 msgid "Even if there are multiple Pricing Rules with highest priority, then following internal priorities are applied:" -msgstr "Čak i ako postoji više pravila za određivanje cijena s najvišim prioritetom, primjenjuju se sljedeći interni prioriteti:" +msgstr "Čak i ako postoji više pravila za određivanje cjena s najvišim prioritetom, primjenjuju se sljedeći interni prioriteti:" #. Title of an incoterm #: erpnext/setup/doctype/incoterm/incoterms.csv:2 @@ -19731,7 +19756,7 @@ msgstr "Ex Works" msgid "Example URL" msgstr "Primjer URL-a" -#: erpnext/stock/doctype/item/item.py:1128 +#: erpnext/stock/doctype/item/item.py:1133 msgid "Example of a linked document: {0}" msgstr "Primjer povezanog dokumenta: {0}" @@ -19740,18 +19765,18 @@ msgstr "Primjer povezanog dokumenta: {0}" msgid "Example: ABCD.#####\n" "If series is set and Serial No is not mentioned in transactions, then automatic serial number will be created based on this series. If you always want to explicitly mention Serial Nos for this item. leave this blank." msgstr "Primjer: ABCD.#####\n" -"Ako je serija postavljena, a serijski broj nije postavljen u transakcijama, tada će se automatski serijski broj kreirati na osnovu ove serije. Ako uvijek želite eksplicitno postaviti serijske brojeve za ovaj artikal ostavite ovo prazno." +"Ako je serija postavljena, a serijski broj nije postavljen u transakcijama, tada će se automatski serijski broj izraditi na osnovu ove serije. Ako uvijek želite eksplicitno postaviti serijske brojeve za ovaj artikal ostavite ovo prazno." #. Description of the 'Batch Number Series' (Data) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Example: ABCD.#####. If series is set and Batch No is not mentioned in transactions, then automatic batch number will be created based on this series. If you always want to explicitly mention Batch No for this item, leave this blank. Note: this setting will take priority over the Naming Series Prefix in Stock Settings." -msgstr "Primjer: ABCD.#####. Ako je serija postavljena, a broj šarže nije postavljen u transakcijama, automatski će se broj šarže kreirati na osnovu ove serije. Ako uvijek želite eksplicitno postavitii broj šarže za ovaj artikal, ostavite ovo prazno. Napomena: ova postavka će imati prioritet nad Prefiksom Serije Imenovanja u postavkama zaliha." +msgstr "Primjer: ABCD.#####. Ako je serija postavljena, a broj šarže nije postavljen u transakcijama, automatski će se broj šarže izraditi na osnovu ove serije. Ako uvijek želite eksplicitno postavitii broj šarže za ovaj artikal, ostavite ovo prazno. Napomena: ova postavka će imati prioritet nad Prefiksom Serije Imenovanja u postavkama zaliha." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:468 msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "Primjer: Ako je iznos transakcije 200, onda će se ovo izračunati kao {} = {}" -#: erpnext/stock/stock_ledger.py:2446 +#: erpnext/stock/stock_ledger.py:2494 msgid "Example: Serial No {0} reserved in {1}." msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}." @@ -19809,7 +19834,7 @@ msgstr "Rezultat Deviznog Kursa" #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json -#: erpnext/setup/doctype/company/company.py:743 +#: erpnext/setup/doctype/company/company.py:745 msgid "Exchange Gain/Loss" msgstr "Rezultat Deviznog Kursa" @@ -19914,7 +19939,7 @@ msgstr "Devizni Kurs mora biti isti kao {0} {1} ({2})" msgid "Excise Entry" msgstr "Unos Akcize" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:1520 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:1524 msgid "Excise Invoice" msgstr "Akcizna Faktura" @@ -20105,7 +20130,7 @@ msgstr "Očekivano Potrebno Vrijeme (u minutama)" msgid "Expected Value After Useful Life" msgstr "Očekivana vrijednost nakon korisnog vijeka trajanja" -#: erpnext/public/js/shop_floor/shop_floor.js:936 +#: erpnext/public/js/shop_floor/shop_floor.js:972 msgid "Expected: {0}" msgstr "Očekivano: {0}" @@ -20123,12 +20148,12 @@ msgstr "Očekivano: {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:206 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Troškovi" -#: erpnext/stock/services/base_stock_gl_composer.py:220 +#: erpnext/stock/services/base_stock_gl_composer.py:276 msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account" msgstr "Račun Rashoda/ Razlike ({0}) mora biti račun 'Dobitka ili Gubitka'" @@ -20180,7 +20205,7 @@ msgstr "Račun Rashoda/ Razlike ({0}) mora biti račun 'Dobitka ili Gubitka'" msgid "Expense Account" msgstr "Račun Troškova" -#: erpnext/stock/services/base_stock_gl_composer.py:199 +#: erpnext/stock/services/base_stock_gl_composer.py:266 msgid "Expense Account Missing" msgstr "Nedostaje Račun Troškova" @@ -20214,6 +20239,32 @@ msgstr "Trošak za ovaj artikal bit će priznat tokom nekoliko mjeseci. Npr: una msgid "Expenses" msgstr "Troškovi" +#. Label of the expenses_added_to_stock_account (Link) field in DocType +#. 'Company' +#. Label of the expenses_added_to_stock_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_expenses_added_to_stock_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Expenses Added To Stock Account" +msgstr "" + +#. Label of the expenses_added_to_stock_contra_account (Link) field in DocType +#. 'Company' +#. Label of the expenses_added_to_stock_contra_account (Link) field in DocType +#. 'Item Default' +#. Label of the vf_expenses_added_to_stock_contra_account (Read Only) field in +#. DocType 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Expenses Added To Stock Contra Account" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:217 +msgid "Expenses Added To Stock for Item {0}" +msgstr "" + #. Option for the 'Account Type' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92 @@ -20231,7 +20282,7 @@ msgid "Expenses Included In Valuation" msgstr "Troškovi uključeni u Procjenu" #: erpnext/stock/doctype/pick_list/pick_list.py:310 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:518 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:517 msgid "Expired Batches" msgstr "Istekle Šarže" @@ -20368,11 +20419,6 @@ msgstr "FIFO red Zaliha (količina, cjena)" msgid "FIFO/LIFO Queue" msgstr "FIFO/LIFO red čekanja" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "FX Revaluation" -msgstr "Revalorizacija Deviznog Kursa" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Fahrenheit" @@ -20384,12 +20430,12 @@ msgstr "Neuspješni Unosi" #: erpnext/utilities/doctype/video_settings/video_settings.py:35 msgid "Failed to authenticate the API key. Please check the error logs." -msgstr "Autentifikacija API ključa nije uspjela. Molimo provjerite zapise o greškama." +msgstr "Autentifikacija API ključa nije uspjela. Provjeri zapise o greškama." #: erpnext/setup/setup_wizard/setup_wizard.py:45 #: erpnext/setup/setup_wizard/setup_wizard.py:46 msgid "Failed to create demo data" -msgstr "Nije uspjelo kreiranje demo podataka" +msgstr "Nije uspjelo izradu demo podataka" #: banking/src/components/features/BankReconciliation/BankBalance.tsx:295 msgid "Failed to delete closing balance." @@ -20421,7 +20467,7 @@ msgstr "Nije uspjelo parsiranje MT940 formata. Greška: {0}" msgid "Failed to personalize your setup" msgstr "Personalizacija vaših postavki nije uspjela" -#: erpnext/assets/doctype/asset/asset.js:269 +#: erpnext/assets/doctype/asset/asset.js:277 msgid "Failed to post depreciation entries" msgstr "Neuspješan unos amortizacije" @@ -20435,7 +20481,7 @@ msgstr "Slanje e-pošte za kampanju {0} na {1} nije uspjelo" #: erpnext/setup/setup_wizard/setup_wizard.py:27 msgid "Failed to set defaults" -msgstr "Postavljanje zadanih vrijednosti nije uspjelo" +msgstr "Postavljanje standard vrijednosti nije uspjelo" #: erpnext/setup/setup_wizard/setup_wizard.py:22 #: erpnext/setup/setup_wizard/setup_wizard.py:23 @@ -20446,7 +20492,7 @@ msgstr "Neuspješno postavljanje poduzeća" msgid "Failed to setup defaults" msgstr "Neuspješno postavljanje standard postavki" -#: erpnext/setup/doctype/company/company.py:923 +#: erpnext/setup/doctype/company/company.py:925 msgid "Failed to setup defaults for country {0}. Please contact support." msgstr "Neuspješno postavljanje standard postavki za zemlju {0}. Kontaktiraj podršku." @@ -20501,7 +20547,7 @@ msgstr "Povratne Informacije od" #. Label of a Workspace Sidebar Item #: erpnext/workspace_sidebar/quality.json msgid "Feedback Template" -msgstr "Šablon Povratnih Informacija" +msgstr "Predložak Povratnih Informacija" #. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry #. Account' @@ -20557,8 +20603,8 @@ msgstr "Preuzmi Radni List u Fakturu Prodaje" msgid "Fetch Value From" msgstr "Preuzmi Vrijednost od" -#: erpnext/stock/doctype/material_request/material_request.js:372 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:833 +#: erpnext/stock/doctype/material_request/material_request.js:373 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:832 msgid "Fetch exploded BOM (including sub-assemblies)" msgstr "Pruzmi Neastavljenu Sastavnicu (uključujući podsklopove)" @@ -20622,7 +20668,7 @@ msgstr "Naziv polja {0} već postoji u sljedećim tipovima dokumenata: {1}. Zase #. 'Item Variant Settings' #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Fields will be copied over only at time of creation." -msgstr "Polja će se kopirati samo u vrijeme kreiranja." +msgstr "Polja će se kopirati samo u vrijeme izrade." #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1078 msgid "File does not belong to this Transaction Deletion Record" @@ -20644,7 +20690,7 @@ msgstr "Datoteka za Preimenovanje" #: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 -#: erpnext/public/js/financial_statements.js:395 +#: erpnext/public/js/financial_statements.js:432 msgid "Filter Based On" msgstr "Filter na Osnovu" @@ -20725,7 +20771,6 @@ msgstr "Finalni Proizvod" #. Label of the finance_book (Link) field in DocType 'Asset Finance Book' #. Label of the finance_book (Link) field in DocType 'Asset Shift Allocation' #. Label of the finance_book (Link) field in DocType 'Asset Value Adjustment' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json #: erpnext/accounts/doctype/finance_book/finance_book.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json @@ -20755,8 +20800,7 @@ msgstr "Finalni Proizvod" #: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:48 -#: erpnext/public/js/financial_statements.js:389 -#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/public/js/financial_statements.js:426 msgid "Finance Book" msgstr "Finansijski Registar" @@ -20798,15 +20842,15 @@ msgstr "Red Finansijskog Izvještaja" #: erpnext/accounts/doctype/financial_report_template/financial_report_template.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Financial Report Template" -msgstr "Šablon Finansijskog Izvještaja" +msgstr "Predložak Finansijskog Izvještaja" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:288 msgid "Financial Report Template {0} is disabled" -msgstr "Šablon Finansijskog Izvještaja {0} je onemogućen" +msgstr "Predložak Finansijskog Izvještaja {0} je onemogućen" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:285 msgid "Financial Report Template {0} not found" -msgstr "Šablon Finansijskog Izvještaja {0} nije pronađen" +msgstr "Predložak Finansijskog Izvještaja {0} nije pronađen" #. Name of a Workspace #. Label of a Desktop Icon @@ -20826,7 +20870,7 @@ msgstr "Finansijske Usluge" #. Label of a Card Break in the Financial Reports Workspace #: erpnext/accounts/workspace/financial_reports/financial_reports.json -#: erpnext/public/js/financial_statements.js:325 +#: erpnext/public/js/financial_statements.js:350 msgid "Financial Statements" msgstr "Finansijski izvještaji" @@ -20838,11 +20882,11 @@ msgstr "Finansijska Godina počinje" #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) " -msgstr "Finansijski izvještaji će se generirati korištenjem doctypes Knjgovodstvenog Unosa (trebalo bi biti omogućeno ako se verifikat za zatvaranje perioda nije objavljen za sve godine uzastopno ili nedostaje) " +msgstr "Finansijski izvještaji će se izraditi korištenjem doctypes Knjgovodstvenog Unosa (trebalo bi biti omogućeno ako se verifikat za zatvaranje perioda nije objavljen za sve godine uzastopno ili nedostaje) " -#: erpnext/manufacturing/doctype/work_order/work_order.js:905 -#: erpnext/manufacturing/doctype/work_order/work_order.js:920 -#: erpnext/manufacturing/doctype/work_order/work_order.js:929 +#: erpnext/manufacturing/doctype/work_order/work_order.js:909 +#: erpnext/manufacturing/doctype/work_order/work_order.js:924 +#: erpnext/manufacturing/doctype/work_order/work_order.js:933 msgid "Finish" msgstr "Gotovo" @@ -20873,7 +20917,7 @@ msgstr "Sastavnica Gotovog Proizvoda" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:930 +#: erpnext/public/js/utils.js:942 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20886,7 +20930,7 @@ msgstr "Artikal Gotovog Proizvoda" msgid "Finished Good Item Code" msgstr "Gotov Proizvod Artikal Kod" -#: erpnext/public/js/utils.js:948 +#: erpnext/public/js/utils.js:960 msgid "Finished Good Item Qty" msgstr "Količina Artikla Gotovog Proizvoda" @@ -20953,7 +20997,7 @@ msgid "Finished Good {0} must be a sub-contracted item." msgstr "Gotov Proizvod {0} mora biti podizvođački artikal." #: erpnext/selling/doctype/sales_order/sales_order.js:1475 -#: erpnext/setup/doctype/company/company.py:454 +#: erpnext/setup/doctype/company/company.py:456 msgid "Finished Goods" msgstr "Gotov Proizvod" @@ -20994,7 +21038,7 @@ msgstr "Skladište Gotovog Proizvoda" msgid "Finished Goods based Operating Cost" msgstr "Operativni troškovi zasnovani na Gotovom Proizvodu" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:900 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Gotov Proizvod {0} ne odgovara Radnom Nalogu {1}" @@ -21023,7 +21067,7 @@ msgid "First Response Due" msgstr "Rok za Prvi Odgovor" #: erpnext/support/doctype/issue/test_issue.py:238 -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:906 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:909 msgid "First Response SLA Failed by {}" msgstr "Standard Nivo Servisa prvog odgovora nije uspio od strane {}" @@ -21045,7 +21089,7 @@ msgstr "Vrijeme Prvog Odgovora" #: erpnext/support/workspace/support/support.json #: erpnext/workspace_sidebar/support.json msgid "First Response Time for Issues" -msgstr "Vrijeme prvog odgovora za Slučaj" +msgstr "Vrijeme prvog odgovora za Zahtjev" #. Name of a report #. Label of a Link in the CRM Workspace @@ -21057,7 +21101,7 @@ msgstr "Vrijeme prvog odgovora za Priliku" #: erpnext/regional/italy/utils.py:236 msgid "Fiscal Regime is mandatory, kindly set the fiscal regime in the company {0}" -msgstr "Fiskalni režim je obavezan, ljubazno postavite fiskalni režim za {0}" +msgstr "Fiskalni režim je obavezan, ljubazno postavi fiskalni režim za {0}" #. Name of a DocType #. Label of the fiscal_year (Link) field in DocType 'GL Entry' @@ -21068,7 +21112,6 @@ msgstr "Fiskalni režim je obavezan, ljubazno postavite fiskalni režim za {0}" #. Certificate' #. Label of the fiscal_year (Link) field in DocType 'Target Detail' #. Label of the fiscal_year (Data) field in DocType 'Stock Ledger Entry' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/fiscal_year/fiscal_year.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json @@ -21089,7 +21132,6 @@ msgstr "Fiskalni režim je obavezan, ljubazno postavite fiskalni režim za {0}" #: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:15 #: erpnext/setup/doctype/target_detail/target_detail.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Fiscal Year" msgstr "Fiskalna Godina" @@ -21107,7 +21149,7 @@ msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Datum završetka fiskalne godine trebao bi biti godinu dana nakon datuma početka fiskalne godine" #: erpnext/accounts/report/trial_balance/trial_balance.py:49 -#: erpnext/controllers/trends.py:59 +#: erpnext/controllers/trends.py:63 msgid "Fiscal Year {0} does not exist" msgstr "Fiskalna Godina {0} nema u sistemu" @@ -21127,7 +21169,7 @@ msgstr "Ispravak Unosa Paketa Serijskog i Šaržnog Broja" #. Rule' #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json msgid "Fixed" -msgstr "Fiksna Cijena" +msgstr "Fiksna Cjena" #. Option for the 'Account Type' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json @@ -21151,7 +21193,7 @@ msgstr "Račun Fiksne Imovine" msgid "Fixed Asset Defaults" msgstr "Standard Postavke Fiksne Imovine" -#: erpnext/stock/doctype/item/item.py:374 +#: erpnext/stock/doctype/item/item.py:379 msgid "Fixed Asset Item must be a non-stock item." msgstr "Artikal Fiksne Imovine mora biti artikal koja nije na zalihama." @@ -21189,7 +21231,7 @@ msgstr "Fiksni račun odlazne e-pošte" #. 'Subscription Plan' #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json msgid "Fixed Rate" -msgstr "Fiksna Cijena" +msgstr "Fiksna Cjena" #. Label of the fixed_time (Check) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json @@ -21246,7 +21288,7 @@ msgstr "Sljedeći Materijalni Materijalni Nalozi su automatski zatraženi na osn #: erpnext/selling/doctype/customer/mapper.py:174 msgid "Following fields are mandatory to create address:" -msgstr "Sljedeća polja su obavezna za kreiranje adrese:" +msgstr "Sljedeća polja su obavezna za izradu adrese:" #: erpnext/setup/setup_wizard/data/industry_type.txt:25 msgid "Food, Beverage & Tobacco" @@ -21276,7 +21318,7 @@ msgstr "Foot/Second" msgid "For" msgstr "Za" -#: erpnext/public/js/utils/sales_common.js:395 +#: erpnext/public/js/utils/sales_common.js:393 msgid "For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table." msgstr "Za artikel 'Artikal Paket ', skladište, serijski broj i šaržu će se uzeti u obzir iz tabele 'Lista Pakovanja'. Ako su Skladište i Šaržni Broj isti za sve artikle pakovanja za bilo koji 'Artikal Paket', te vrijednosti se mogu unijeti u glavnu tabelu Artikala, vrijednosti će se kopirati u tabelu 'Lista Pakovanja'." @@ -21310,7 +21352,7 @@ msgstr "Za Radnu Karticu" #: erpnext/manufacturing/doctype/job_card/job_card.js:464 #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Operation" -msgstr "Za Operaciju" +msgstr "Za Radnju" #: banking/src/pages/BankStatementImporter.tsx:172 msgid "For PDF statements, we auto-detect the tables on each page. You can then confirm each detected table, map its columns, and exclude anything that is not transactions (e.g. ads or summaries). Password-protected PDFs are supported - the password is saved on the bank account and reused." @@ -21322,7 +21364,7 @@ msgstr "Za PDF izvode, automatski detektujemo tabele na svakoj stranici. Zatim m #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json msgid "For Price List" -msgstr "Za Cijenovnik" +msgstr "Za Cjenovnik" #. Description of the 'Planned Quantity' (Float) field in DocType 'Sales Order #. Item' @@ -21338,7 +21380,7 @@ msgstr "Za Proizvodnju" msgid "For Raw Materials" msgstr "Sirovine" -#: erpnext/controllers/accounts_controller.py:981 +#: erpnext/controllers/accounts_controller.py:908 msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}" msgstr "Za Povratne Fakture sa efektom zaliha, '0' u količina Artikla nisu dozvoljeni. Ovo utiče na sledeće redove: {0}" @@ -21363,7 +21405,7 @@ msgstr "Za artikle Standardnih Troškova: ovdje se knjiži razlika između utro #. 'Item Default' #: erpnext/stock/doctype/item_default/item_default.json msgid "For Standard Cost items: the purchase price vs standard rate difference is booked here. Falls back to the Company's Default Purchase Price Variance Account." -msgstr "Za artikle Standardnih Troškova: ovdje se knjiži razlika između nabavne cijene i standardne stope. Spada na Standard Račun Odstupanja Nabavne Cijene." +msgstr "Za artikle Standardnih Troškova: ovdje se knjiži razlika između nabavne cjene i standardne stope. Spada na Standard Račun Odstupanja Nabavne Cjene." #: erpnext/accounts/doctype/payment_order/payment_order.js:108 msgid "For Supplier" @@ -21372,14 +21414,19 @@ msgstr "Za Dobavljača" #. Label of the warehouse (Link) field in DocType 'Material Request Plan Item' #. Label of the for_warehouse (Link) field in DocType 'Production Plan' #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:497 #: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:180 #: erpnext/selling/doctype/sales_order/sales_order.js:1488 -#: erpnext/stock/doctype/material_request/material_request.js:361 +#: erpnext/stock/doctype/material_request/material_request.js:362 #: erpnext/templates/form_grid/material_request_grid.html:36 msgid "For Warehouse" msgstr "Za Skladište" +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:167 +msgid "For Warehouse {0} must be a child of the group warehouse {1}." +msgstr "Za Skladište {0} mora biti podređeno grupnog skladišta {1}." + #: erpnext/public/js/utils/serial_no_batch_selector.js:136 msgid "For Work Order" msgstr "Za Radni Nalog" @@ -21428,21 +21475,21 @@ msgstr "Za artikal {0}, samo {1} imovina je stvorena ili povezana #: erpnext/controllers/status_updater.py:303 msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" -msgstr "Za artikal {0}, cijena mora biti pozitivan broj. Da biste omogućili negativne cijene, omogućite {1} u {2}" +msgstr "Za artikal {0}, cjena mora biti pozitivan broj. Da biste omogućili negativne cjene, omogućite {1} u {2}" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json msgid "For legacy serial nos, do not fetch incoming rate from serial no and calculate it based on the inward transaction" -msgstr "Za stare serijske brojeve, nemojte preuzimati nabvnu cijenu iz serijskog broja i izračunavajte je na osnovu nabavne transakcije" +msgstr "Za stare serijske brojeve, nemojte preuzimati nabvnu cjenu iz serijskog broja i izračunavajte je na osnovu nabavne transakcije" #: erpnext/manufacturing/doctype/bom/bom.py:400 msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." -msgstr "Za operaciju {0} u redu {1}, molimo dodajte sirovine ili postavite Sastavnicu naspram nje." +msgstr "Za radnju {0} u redu {1}, molimo dodajte sirovine ili postavi Sastavnicu naspram nje." #: erpnext/manufacturing/doctype/work_order/mapper.py:379 msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" -msgstr "Za Operaciju {0}: Količina ({1}) ne može biti veća od količine na čekanju ({2})" +msgstr "Za Radnju {0}: Količina ({1}) ne može biti veća od količine na čekanju ({2})" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21465,9 +21512,9 @@ msgstr "Za Referencu" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1541 #: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" -msgstr "Za red {0} u {1}. Da biste uključili {2} u cijenu artikla, redovi {3} također moraju biti uključeni" +msgstr "Za red {0} u {1}. Da biste uključili {2} u cjenu artikla, redovi {3} također moraju biti uključeni" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:270 msgid "For row {0}: Enter Planned Qty" msgstr "Za red {0}: Unesi Planiranu Količinu" @@ -21477,7 +21524,7 @@ msgstr "Za red {0}: Unesi Planiranu Količinu" msgid "For service item" msgstr "Za servisni artikal" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:178 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:196 msgid "For the 'Apply Rule On Other' condition the field {0} is mandatory" msgstr "Za uslov 'Primijeni Pravilo na Drugo' polje {0} je obavezno" @@ -21486,7 +21533,7 @@ msgstr "Za uslov 'Primijeni Pravilo na Drugo' polje {0} je obavezno" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Za praktičnost Klienta, ovi kodovi se mogu koristiti u formatima za ispisivanje kao što su Fakture i Dostavnice" -#: erpnext/stock/serial_batch_bundle.py:1234 +#: erpnext/stock/serial_batch_bundle.py:1240 msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." msgstr "Za artikal {0}, Dostupna količina {1} je manja od Potrebne količine {2} u skladištu {3}. Dodaj dovoljnu količinu u skladište." @@ -21499,7 +21546,7 @@ msgctxt "Clear payment terms template and/or payment schedule when due date is c msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Da bi novi {0} stupio na snagu, želite li izbrisati trenutni {1}?" -#: erpnext/stock/services/serial_batch_bundle_service.py:272 +#: erpnext/stock/services/serial_batch_bundle_service.py:274 msgid "For the {0}, no stock is available for the return in the warehouse {1}." msgstr "Za {0} nema raspoloživih zaliha za povrat u skladištu {1}." @@ -21593,7 +21640,7 @@ msgstr "Podrška Prodaje" msgid "Frappe CRM Allowed User" msgstr "Dozvoljeni korisnik Prodajne Podrške" -#: erpnext/crm/frappe_crm_api.py:183 +#: erpnext/crm/frappe_crm_api.py:186 msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." msgstr "Sinhronizacija podataka Prodajne Podrške nije omogućena na Sistemu. Kontaktiraj Odgovornog Sistema." @@ -21622,25 +21669,25 @@ msgstr "Besplatni Artikal" #. Label of the free_item_rate (Currency) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Free Item Rate" -msgstr "Cijena Besplatnog Artikla" +msgstr "Cjena Besplatnog Artikla" #. Title of an incoterm #: erpnext/setup/doctype/incoterm/incoterms.csv:5 msgid "Free On Board" msgstr "Free On Board" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:283 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:301 msgid "Free item code is not selected" msgstr "Besplatni kod artikla nije odabran" #: erpnext/accounts/doctype/pricing_rule/utils.py:653 msgid "Free item not set in the pricing rule {0}" -msgstr "Besplatni artikal nije postavljen u pravilu cijene {0}" +msgstr "Besplatni artikal nije postavljen u pravilu cjene {0}" #. Label of the stock_frozen_upto_days (Int) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Freeze stocks older than (days)" -msgstr "Zamrznite zalihe starije od (dana)" +msgstr "Zatvori zalihe starije od (dana)" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190 @@ -21708,7 +21755,7 @@ msgstr "Od Klijenta" msgid "From Date and To Date are Mandatory" msgstr "Od datuma i do datuma su obavezni" -#: erpnext/accounts/report/financial_statements.py:138 +#: erpnext/accounts/report/financial_statements.py:315 msgid "From Date and To Date are mandatory" msgstr "Od datuma i do datuma su obavezni" @@ -21716,7 +21763,7 @@ msgstr "Od datuma i do datuma su obavezni" msgid "From Date and To Date are required" msgstr "Od Datuma i Do Datuma su obavezni" -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:30 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:40 msgid "From Date and To Date lie in different Fiscal Year" msgstr "Od datuma i do datuma su u različitim Fiskalnim Godinama" @@ -21739,9 +21786,9 @@ msgstr "Od datuma je obavezno" #: erpnext/accounts/report/general_ledger/general_ledger.py:86 #: erpnext/accounts/report/pos_register/pos_register.py:124 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:32 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:25 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:34 -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:38 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:35 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:39 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:49 msgid "From Date must be before To Date" msgstr "Od datuma mora biti prije Do datuma" @@ -21779,11 +21826,11 @@ msgstr "Od Datuma Dospijeća" #. Label of the from_employee (Link) field in DocType 'Asset Movement Item' #: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json msgid "From Employee" -msgstr "Od Personala" +msgstr "Od Osoblja" #: erpnext/assets/doctype/asset_movement/asset_movement.py:98 msgid "From Employee is required while issuing Asset {0}" -msgstr "Personal je obavezan prilikom izdavanja Imovine {0}" +msgstr "Osoblje je obavezano prilikom izdavanja Imovine {0}" #. Label of the from_external_ecomm_platform (Check) field in DocType 'Coupon #. Code' @@ -21848,7 +21895,7 @@ msgstr "Od Datuma Knjiženja" msgid "From Range" msgstr "Od Raspona" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:95 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:97 msgid "From Range has to be less than To Range" msgstr "Od Raspona mora biti manje od Do Raspona" @@ -21868,7 +21915,7 @@ msgstr "Od Akcionara" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/projects/doctype/project/project.json msgid "From Template" -msgstr "Iz Šablona" +msgstr "Iz Predloška" #. Label of the from_time (Time) field in DocType 'Cashier Closing' #. Label of the from_time (Datetime) field in DocType 'Sales Invoice Timesheet' @@ -21970,12 +22017,12 @@ msgstr "Od vrijednost mora biti manja od vrijednosti u redu {0}" #: erpnext/accounts/doctype/account/account.json #: erpnext/buying/doctype/supplier/supplier_list.js:9 msgid "Frozen" -msgstr "Zamrznuto" +msgstr "Zatvoreno" #. Description of the 'Is Frozen' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Frozen suppliers block ledger entries until unfrozen. Use this to temporarily lock accounting activity without disabling the supplier." -msgstr "Zamrznuti dobavljači blokiraju unose u registar dok se ne odmrznu. Koristite ovo za privremeno zaključavanje knjigovodstvenih aktivnosti bez onemogućavanja dobavljača." +msgstr "Zatvoreni dobavljači blokiraju unose u registar dok se ne otvore. Koristite ovo za privremeno zaključavanje knjigovodstvenih aktivnosti bez onemogućavanja dobavljača." #. Label of the fuel_type (Select) field in DocType 'Vehicle' #: erpnext/setup/doctype/vehicle/vehicle.json @@ -22094,20 +22141,20 @@ msgstr "Daljnji računi se mogu napraviti pod Grupama, ali unosi se mogu izvrši #: erpnext/accounts/doctype/cost_center/cost_center_tree.js:31 msgid "Further cost centers can be made under Groups but entries can be made against non-Groups" -msgstr "Dalja centri troškova mogu se kreirati pod Grupama, ali se unosi mogu izvršiti za podređene" +msgstr "Dalja centri troškova mogu se izraditi pod Grupama, ali se unosi mogu izvršiti za podređene" #: erpnext/setup/doctype/sales_person/sales_person_tree.js:15 msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Dalji članovi se mogu kreirati samo pod članovima tipa 'Grupa'" +msgstr "Dalji članovi se mogu izraditi samo pod članovima tipa 'Grupa'" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1232 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1234 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179 msgid "Future Payment Amount" msgstr "Iznos Buduće Isplate" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1231 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 msgid "Future Payment Ref" msgstr "Referensa Buduće Isplate" @@ -22198,7 +22245,7 @@ msgstr "Rezultat od Revalorizacije" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:138 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:225 -#: erpnext/setup/doctype/company/company.py:751 +#: erpnext/setup/doctype/company/company.py:753 msgid "Gain/Loss on Asset Disposal" msgstr "Rezultat pri Odlaganju Imovine" @@ -22265,7 +22312,10 @@ msgstr "Dužina napomena Knjigovodstvenog Registra" msgid "General Ledger requires {0} to be synced to DuckDB" msgstr "Knjigovodstveni Registar zahtijeva da se {0} sinhronizira sa DuckDB-om" +#. Label of the general_settings_section (Section Break) field in DocType +#. 'Global Defaults' #. Label of the gs (Section Break) field in DocType 'Item Group' +#: erpnext/setup/doctype/global_defaults/global_defaults.json #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" msgstr "Opšte Postavke" @@ -22289,52 +22339,52 @@ msgstr "Opće informacije o vašem Dobavljaču" #. Label of the generate_demand (Button) field in DocType 'Sales Forecast' #: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json msgid "Generate Demand" -msgstr "Generiši Potražnju" +msgstr "Izradi Potražnju" #: erpnext/public/js/setup_wizard.js:148 msgid "Generate Demo Data for Exploration" -msgstr "Generiši Demo podatke za istraživanje" +msgstr "Izradi Demo podatke za istraživanje" #: erpnext/accounts/doctype/sales_invoice/regional/italy.js:4 msgid "Generate E-Invoice" -msgstr "Generiši e-Fakturu" +msgstr "Izradi e-Fakturu" #. Label of the generate_invoice_at (Select) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Generate Invoice At" -msgstr "Generiši Fakturu" +msgstr "Izradi Fakturu" #. Label of the generate_schedule (Button) field in DocType 'Maintenance #. Schedule' #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json msgid "Generate Schedule" -msgstr "Generiši Raspored" +msgstr "Izradi Raspored" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:12 msgid "Generate Stock Closing Entry" -msgstr "Generiši upis za zatvaranje Zaliha" +msgstr "Izradi upis za zatvaranje Zaliha" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:112 msgid "Generate To Delete List" -msgstr "Generiraj za brisanje liste" +msgstr "Izradi za brisanje liste" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" -msgstr "Prvo generiraj listu za brisanje" +msgstr "Prvo izradi listu za brisanje" #. Description of a DocType #: erpnext/stock/doctype/packing_slip/packing_slip.json msgid "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight." -msgstr "Generiši Otpremnice za pakete koji će biti isporučeni. Koristi se za obavještenje o broju paketa, sadržaju paketa i njegovoj težini." +msgstr "Izradi Otpremnice za pakete koji će biti isporučeni. Koristi se za obavještenje o broju paketa, sadržaju paketa i njegovoj težini." #. Label of the generated (Check) field in DocType 'Bisect Nodes' #: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json msgid "Generated" -msgstr "Generisano" +msgstr "Izrađeno" #: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:56 msgid "Generating Master Production Schedule..." -msgstr "Generiši Glavni Proizvodni Raspored..." +msgstr "Izradi Glavni Proizvodni Raspored..." #: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.js:30 msgid "Generating Preview" @@ -22377,7 +22427,7 @@ msgstr "Preuzmi Stanje" msgid "Get Current Stock" msgstr "Preuzmi Trenutne Zalihe" -#: erpnext/selling/doctype/customer/customer.js:190 +#: erpnext/selling/doctype/customer/customer.js:199 msgid "Get Customer Group Details" msgstr "Preuzmi Detalje o Grupi Klijenta" @@ -22441,15 +22491,15 @@ msgstr "Preuzmi Lokacije Artikla" #: erpnext/selling/doctype/sales_order/sales_order.js:1254 #: erpnext/stock/doctype/delivery_note/delivery_note.js:187 #: erpnext/stock/doctype/delivery_note/delivery_note.js:239 -#: erpnext/stock/doctype/material_request/material_request.js:141 -#: erpnext/stock/doctype/material_request/material_request.js:238 +#: erpnext/stock/doctype/material_request/material_request.js:144 +#: erpnext/stock/doctype/material_request/material_request.js:241 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:144 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:244 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:461 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:508 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:541 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:632 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:800 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:460 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:507 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:540 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:631 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:799 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:165 msgid "Get Items From" msgstr "Preuzmi Artikle iz" @@ -22464,9 +22514,9 @@ msgstr "Preuzmi Artikle za Nabavu / Prijenos" msgid "Get Items for Purchase Only" msgstr "Preuzmi Artikle samo za Nabavu" -#: erpnext/stock/doctype/material_request/material_request.js:346 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:836 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:849 +#: erpnext/stock/doctype/material_request/material_request.js:347 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:835 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:848 msgid "Get Items from BOM" msgstr "Preuzmi Artikle iz Sastavnice" @@ -22550,7 +22600,7 @@ msgstr "Preuzmi Sekundarne Artikle" msgid "Get Started Sections" msgstr "Odjeljci Prvih Koraka" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:552 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:579 msgid "Get Stock" msgstr "Preuzmi Zalihe" @@ -22560,7 +22610,7 @@ msgstr "Preuzmi Zalihe" msgid "Get Sub Assembly Items" msgstr "Preuzmi Artikle Podsklopa" -#: erpnext/buying/doctype/supplier/supplier.js:151 +#: erpnext/buying/doctype/supplier/supplier.js:160 msgid "Get Supplier Group Details" msgstr "Preuzmi Detalje o Grupi Dobavljača" @@ -22652,7 +22702,7 @@ msgstr "Ciljevi" msgid "Goods" msgstr "Proizvod" -#: erpnext/setup/doctype/company/company.py:455 +#: erpnext/setup/doctype/company/company.py:457 #: erpnext/stock/doctype/stock_entry/stock_entry_list.js:34 msgid "Goods In Transit" msgstr "Proizvod u Tranzitu" @@ -22661,7 +22711,7 @@ msgstr "Proizvod u Tranzitu" msgid "Goods Transferred" msgstr "Proizvod je Prenesen" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1348 msgid "Goods are already received against the outward entry {0}" msgstr "Proizvod je već primljen naspram unosa izlaza {0}" @@ -22892,7 +22942,7 @@ msgstr "Bruto Marža %" #. Label of the gross_profit (Currency) field in DocType 'Sales Order Item' #. Label of a Workspace Sidebar Item #: erpnext/accounts/report/gross_profit/gross_profit.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:375 +#: erpnext/accounts/report/gross_profit/gross_profit.py:377 #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -22904,7 +22954,7 @@ msgstr "Bruto Rezultat" msgid "Gross Profit / Loss" msgstr "Bruto Rezultat" -#: erpnext/accounts/report/gross_profit/gross_profit.py:382 +#: erpnext/accounts/report/gross_profit/gross_profit.py:384 msgid "Gross Profit Percent" msgstr "Bruto Rezultat %" @@ -22963,6 +23013,12 @@ msgstr "Grupna Skladišta se ne mogu koristiti u transakcijama. Molimo promijeni msgid "Group by" msgstr "Grupiši po" +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 +#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +msgid "Group by Dimension" +msgstr "Grupiraj po Dimenziji" + #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:61 msgid "Group by Material Request" msgstr "Grupiši po Materijalnom Zahtjevu" @@ -23013,8 +23069,8 @@ msgstr "Grupiši iste Artikle" msgid "Groups" msgstr "Grupe" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:32 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:32 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:39 msgid "Growth View" msgstr "Pregled Rasta" @@ -23072,7 +23128,7 @@ msgstr "HR Korisnik" #: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:72 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:77 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:59 -#: erpnext/public/js/financial_statements.js:456 +#: erpnext/public/js/financial_statements.js:493 #: erpnext/public/js/purchase_trends_filters.js:21 #: erpnext/public/js/sales_trends_filters.js:13 #: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:34 @@ -23088,7 +23144,7 @@ msgstr "Hand" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:161 msgid "Handle Employee Advances" -msgstr "Rukovanje Predujmom Personala" +msgstr "Rukovanje Predujmom Osoblja" #: erpnext/setup/setup_wizard/operations/install_fixtures.py:228 msgid "Hardware" @@ -23196,7 +23252,7 @@ msgstr "Ima Podizvođača" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json msgid "Has Unit Price Items" -msgstr "Ima Artikal Jedinične Cijene" +msgstr "Ima Artikal Jedinične Cjene" #. Label of the has_variants (Check) field in DocType 'BOM' #. Label of the has_variants (Check) field in DocType 'BOM Item' @@ -23287,7 +23343,7 @@ msgstr "Pomaže vam da raspodijelite Proračun/Cilj po mjesecima ako imate sezon msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Ovdje su zapisi grešaka za gore navedene neuspjele unose amortizacije: {0}" -#: erpnext/stock/stock_ledger.py:2142 +#: erpnext/stock/stock_ledger.py:2190 msgid "Here are the options to proceed:" msgstr "Ovdje su opcije za nastavak:" @@ -23315,7 +23371,7 @@ msgstr "Ovdje su vaši sedmični neradni dani unaprijed popunjeni na osnovu pret msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:615 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:764 msgid "Hi," msgstr "Zdravo," @@ -23330,8 +23386,7 @@ msgstr "Skriven Red (samo za internu upotrebu)" msgid "Hidden list maintaining the list of contacts linked to Shareholder" msgstr "Skrivena lista koja održava listu kontakata povezanih sa Dioničarem" -#. Label of the hide_currency_symbol (Select) field in DocType 'Global -#. Defaults' +#. Label of the hide_currency_symbol (Check) field in DocType 'Global Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "Hide Currency Symbol" msgstr "Sakrij Simbol Valute" @@ -23506,7 +23561,7 @@ msgstr "Koliko često treba ažurirati podatke o prodaji u Poduzeću/Projektu?" #. Row' #: erpnext/accounts/doctype/financial_report_row/financial_report_row.json msgid "How this line gets its data" -msgstr "Kako ovaj red dobija podatke" +msgstr "Kako ovaj red preuzima podatke" #. Description of the 'Value Type' (Select) field in DocType 'Financial Report #. Row' @@ -23519,7 +23574,7 @@ msgstr "Kako formatirati i prikazati vrijednosti u finansijskom izvještaju (sam msgid "Hrs" msgstr "Sati" -#: erpnext/setup/doctype/company/company.py:561 +#: erpnext/setup/doctype/company/company.py:563 msgid "Human Resources" msgstr "Ljudski Resursi" @@ -23642,7 +23697,7 @@ msgstr "Ako se stranka ne može uskladiti po broju računa ili IBAN-u, sistem ć #: erpnext/manufacturing/doctype/operation/operation.js:32 msgid "If an operation is divided into sub operations, they can be added here." -msgstr "Ako je operacija podijeljena na podoperacije, one se mogu dodati ovdje." +msgstr "Ako je radnja podijeljena na podradnje, one se mogu dodati ovdje." #. Description of the 'Account' (Link) field in DocType 'Warehouse' #: erpnext/stock/doctype/warehouse/warehouse.json @@ -23653,28 +23708,28 @@ msgstr "Ako je prazno, u transakcijama će se uzeti u obzir Nadređeni Račun Sk #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "If checked, Rejected Quantity will be included while making Purchase Invoice from Purchase Receipt." -msgstr "Ako je označeno, Odbijena Količina će biti uključena prilikom izrade Nabavne Fakture iz Nabavnog Računa." +msgstr "Ako je odabrano, Odbijena Količina će biti uključena prilikom izrade Nabavne Fakture iz Nabavnog Računa." #. Description of the 'Reserve Stock' (Check) field in DocType 'Sales Order' #: erpnext/selling/doctype/sales_order/sales_order.json msgid "If checked, Stock will be reserved on Submit" -msgstr "Ako je označeno, Zalihe će biti rezervisane na Podnesi" +msgstr "Ako je odabrano, Zalihe će biti rezervisane na Podnesi" #. Description of the 'Is Credit Card' (Check) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json msgid "If checked, journal entries made using bank reconciliation will be of type \"Credit Card Entry\"" -msgstr "Ako je označeno, nalozi knjiženja napravljeni korištenjem bankovnog usklađivanja bit će tipa \"Unos Kreditne Kartice\"" +msgstr "Ako je odabrano, nalozi knjiženja napravljeni korištenjem bankovnog usklađivanja bit će tipa \"Unos Kreditne Kartice\"" #. Description of the 'Scan Mode' (Check) field in DocType 'Pick List' #: erpnext/stock/doctype/pick_list/pick_list.json msgid "If checked, picked qty won't automatically be fulfilled on submit of pick list." -msgstr "Ako je označeno, odabrana količina neće biti automatski ispunjena prilikom podnošenja liste odabira." +msgstr "Ako je odabrano, odabrana količina neće biti automatski ispunjena prilikom podnošenja liste odabira." #. Description of the 'Allocate Full Amount to Stock Items' (Check) field in #. DocType 'Purchase Taxes and Charges' #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json msgid "If checked, the entire amount (e.g. Freight) is allocated to the valuation of stock & asset items only. If unchecked, the amount is distributed across all items and the portion belonging to non-stock items is not added to valuation." -msgstr "Ako je odabrano, cijeli iznos (npr. Vozarina) se dodjeljuje samo za cjenu vrijednvanja zaliha i imovine. Ako nije odabrano, iznos se raspoređuje na sve artikle, a dio koji pripada artiklima koje nisu na zalihama se ne dodaje cijeni vrijednovanja." +msgstr "Ako je odabrano, cijeli iznos (npr. Vozarina) se dodjeljuje samo za cjenu vrijednvanja zaliha i imovine. Ako nije odabrano, iznos se raspoređuje na sve artikle, a dio koji pripada artiklima koje nisu na zalihama se ne dodaje cjeni vrijednovanja." #. Description of the 'Considered In Paid Amount' (Check) field in DocType #. 'Purchase Taxes and Charges' @@ -23683,7 +23738,7 @@ msgstr "Ako je odabrano, cijeli iznos (npr. Vozarina) se dodjeljuje samo za cjen #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json #: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json msgid "If checked, the tax amount will be considered as already included in the Paid Amount in Payment Entry" -msgstr "Ako je označeno, iznos PDV-a će se smatrati već uključenim u Uplaćeni iznos u Unosu Plaćanja" +msgstr "Ako je odabrano, iznos PDV-a će se smatrati već uključenim u Uplaćeni iznos u Unosu Plaćanja" #. Description of the 'Is this Tax included in Basic Rate?' (Check) field in #. DocType 'Purchase Taxes and Charges' @@ -23692,7 +23747,24 @@ msgstr "Ako je označeno, iznos PDV-a će se smatrati već uključenim u Uplaće #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json #: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount" -msgstr "Ako je označeno, iznos PDV-a će se smatrati već uključenim u Ispisanu Cijenu / Ispisani Iznos" +msgstr "Ako je odabrano, iznos PDV-a će se smatrati već uključenim u Ispisanu Cjenu / Ispisani Iznos" + +#. Description of the 'Restrict to Companies' (Check) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "If checked, this Customer is only available for transactions in the companies listed below." +msgstr "" + +#. Description of the 'Restrict to Companies' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If checked, this Item is only available for transactions in the companies listed below." +msgstr "" + +#. Description of the 'Restrict to Companies' (Check) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "If checked, this Supplier is only available for transactions in the companies listed below." +msgstr "" #. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in #. DocType 'Item' @@ -23703,17 +23775,17 @@ msgstr "Ako je odbrano, ovaj artikal se tretira kao direktna dostava u Prodajnim #. Description of the 'Update Stock' (Check) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "If checked, updates inventory; stock and accounting entries are created together. Leave unchecked if a Delivery Note is created separately." -msgstr "Ako je oodabrano, ažurira inventar; zalihe i knjigovodstveni unosi se kreiraju zajedno. Ostavi neodabrano ako se Dostavnica kreira zasebno." +msgstr "Ako je oodabrano, ažurira inventar; zalihe i knjigovodstveni unosi se izrađuju zajedno. Ostavi neodabrano ako se Dostavnica izradi zasebno." #. Description of the 'Update Stock' (Check) field in DocType 'Purchase #. Invoice' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json msgid "If checked, updates inventory; stock and accounting entries are created together. Leave unchecked if a Purchase Receipt is created separately." -msgstr "Ako je odabrano, ažurira se inventar; unosi zaliha i knjigoovodstva se kreiraju zajedno. Ostavi neodabrano ako Kupovni Račun kreira zasebno." +msgstr "Ako je odabrano, ažurira se inventar; unosi zaliha i knjigoovodstva se izrađuju zajedno. Ostavi neodabrano ako Nabavni Račun izradi zasebno." #: erpnext/public/js/setup_wizard.js:150 msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later." -msgstr "Ako je označeno, kreirat ćemo demo podatke za vas da istražite sistem. Ovi demo podaci mogu se kasnije izbrisati." +msgstr "Ako je odabrano, izraditi ćemo demo podatke za vas da istražite sistem. Ovi demo podaci mogu se kasnije izbrisati." #. Description of the 'Service Address' (Small Text) field in DocType 'Warranty #. Claim' @@ -23737,7 +23809,7 @@ msgstr "Ako je onemogućeno, polje 'Ukopno Zaokruženo' neće biti vidljivo ni u #. List' #: erpnext/stock/doctype/pick_list/pick_list.json msgid "If enabled then system won't apply the pricing rule on the delivery note which will be create from the pick list" -msgstr "Ako je omogućeno, sistem neće primijeniti pravilo cijena na dostavnicu koja će biti kreirana sa liste odabira" +msgstr "Ako je omogućeno, sistem neće primijeniti pravilo cjena na dostavnicu koja će biti izrađena sa liste odabira" #. Description of the 'Pick Manually' (Check) field in DocType 'Pick List' #: erpnext/stock/doctype/pick_list/pick_list.json @@ -23773,7 +23845,7 @@ msgstr "Ako je omogućeno, sve datoteke priložene ovom dokumentu bit će prilo #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "If enabled, do not update serial / batch values in the stock transactions on creation of auto Serial \n" " / Batch Bundle. " -msgstr "Ako je omogućeno, nemojte ažurirati serijske/šarža vrijednosti u transakcijama zaliha prilikom kreiranja automatskog serijskog \n" +msgstr "Ako je omogućeno, nemojte ažurirati serijske/šarža vrijednosti u transakcijama zaliha prilikom izrade automatskog serijskog \n" " / šarža paketa. " #. Description of the 'Consider Projected Qty in Calculation' (Check) field in @@ -23819,7 +23891,7 @@ msgstr "Ako je omogućeno, sistem će dozvoliti korisniku da isporuči cjelokupn #. field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "If enabled, system will set incoming rate as zero for stand-alone credit notes with expired batch item." -msgstr "Ako je omogućeno, sistem će postaviti nabavnu cijenu na nulu za samostalne kreditne note sa isteklim artiklima šarže." +msgstr "Ako je omogućeno, sistem će postaviti nabavnu cjenu na nulu za samostalne kreditne note sa isteklim artiklima šarže." #. Description of the 'Deliver secondary Items' (Check) field in DocType #. 'Selling Settings' @@ -23837,7 +23909,7 @@ msgstr "Ako je omogućeno, objedinjene fakture će imati onemogućeno zaokružen #. field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "If enabled, the item rate won't adjust to the valuation rate during internal transfers, but accounting will still use the valuation rate. This will allow the user to specify a different rate for printing or taxation purposes." -msgstr "Ako je omogućeno, cijena artikla se neće prilagođavati stopi vrednovanja tokom internih transfera, ali će knjigovodstvo i dalje koristiti stopu vrednovanja. Ovo će omogućiti korisniku da odredi drugačiju stopu za potrebe štampanja ili oporezivanja." +msgstr "Ako je omogućeno, cjena artikla se neće prilagođavati stopi vrednovanja tokom internih transfera, ali će knjigovodstvo i dalje koristiti stopu vrednovanja. Ovo će omogućiti korisniku da odredi drugačiju stopu za potrebe ispisa ili oporezivanja." #. Description of the 'Validate Material Transfer warehouses' (Check) field in #. DocType 'Stock Settings' @@ -23849,7 +23921,7 @@ msgstr "Ako je omogućeno, izvorno i ciljno skladište u unosu zaliha prijenosa #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "If enabled, the system will allow negative stock entries for the batch. But, this may lead to incorrect valuation rates, so it is recommended to avoid using this option. The system will permit negative stock only when it is caused by backdated entries and will validate and block negative stock in all other cases." -msgstr "Ako je omogućeno, sistem će dozvoliti unose negativnih zaliha za šaržu. Međutim, ovo može dovesti do netačnih stopa vrednovanja, pa se preporučuje izbjegavanje korištenja ove opcije. Sistem će dozvoliti negativne zalihe samo kada su uzrokovane retroaktivnim unosima, a u svim ostalim slučajevima će validirati i blokirati negativne zalihe." +msgstr "Ako je omogućeno, sistem će dozvoliti unose negativnih zaliha za šaržu. Međutim, ovo može dovesti do netačnih stopa vrednovanja, pa se preporučuje izbjegavanje korištenja ove opcije. Sistem će dozvoliti negativne zalihe samo kada su uzrokovane retroaktivnim unosima, a u svim ostalim slučajevima će potvrditi i blokirati negativne zalihe." #. Description of the 'Allow Negative Stock for Batch' (Check) field in DocType #. 'Batch' @@ -23867,7 +23939,7 @@ msgstr "Ako je omogućeno, sistem će dozvoliti izbor jedinica u transakcijama p #. (Check) field in DocType 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "If enabled, the system will allow users to edit the raw materials and their quantities in the Work Order. The system will not reset the quantities as per the BOM, if the user has changed them." -msgstr "Ako je omogućeno, sistem će dozvoliti korisnicima da uređuju sirovine i njihove količine u radnom nalogu. Sistem neće resetovati količine prema BOM-u ako ih je korisnik promijenio." +msgstr "Ako je omogućeno, sistem će dozvoliti korisnicima da uređuju sirovine i njihove količine u radnom nalogu. Sistem neće poništiti količine prema Sastavnici ako ih je korisnik promijenio." #. Description of the 'Set valuation rate for rejected Materials' (Check) field #. in DocType 'Buying Settings' @@ -23885,19 +23957,19 @@ msgstr "Ako je omogućeno, sistem će koristiti račun zaliha iz Postavki Artikl #. DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "If enabled, the system will use the moving average valuation method to calculate the valuation rate for the batched items and will not consider the individual batch-wise incoming rate." -msgstr "Ako je omogućeno, sistem će koristiti metodu vrednovanja pokretnog prosjeka za izračunavanje stope vrednovanja za šaržne artikle i neće uzeti u obzir pojedinačnu dolaznu cijenu u paketu." +msgstr "Ako je omogućeno, sistem će koristiti metodu vrednovanja pokretnog prosjeka za izračunavanje stope vrednovanja za šaržne artikle i neće uzeti u obzir pojedinačnu dolaznu cjenu u paketu." #. Description of the 'Enable Stock Delivered But Not Billed' (Check) field in #. DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "If enabled, the value of goods delivered before invoicing will be recorded in the Stock Delivered But Not Billed account." -msgstr "Ako je omogućeno, isporučene vrijednost prije fakturisanja bit će zabilježena na Zalihe Dostavljene ali ne i Fakturisane računu." +msgstr "Ako je omogućeno, dostavljena vrijednost prije fakturisanja bit će zabilježena na Zalihe Dostavljene ali ne i Fakturisane računu." #. Description of the 'Validate Applied Rule' (Check) field in DocType 'Pricing #. Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "If enabled, then system will only validate the pricing rule and not apply automatically. User has to manually set the discount percentage / margin / free items to validate the pricing rule" -msgstr "Ako je omogućeno, sistem će samo potvrditi pravilo cijena i neće se automatski primjenjivati. Korisnik mora ručno podesiti postotak popusta / maržu / besplatne artikle kako bi potvrdio pravilo cijena" +msgstr "Ako je omogućeno, sistem će samo potvrditi pravilo cjena i neće se automatski primjenjivati. Korisnik mora ručno podesiti postotak popusta / maržu / besplatne artikle kako bi potvrdio pravilo cjena" #. Description of the 'Include in Charts' (Check) field in DocType 'Financial #. Report Row' @@ -23920,7 +23992,7 @@ msgstr "Ako je omogućeno, korisnici moraju ručno unijeti Serijski broj / Šar #. Description of the 'Variant Of' (Link) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "If item is a variant of another item then description, image, pricing, taxes etc will be set from the template unless explicitly specified" -msgstr "Ako je artikal varijanta drugog artikla, opis, slika, cijena, PDV itd. bit će postavljeni iz šablona osim ako nije eksplicitno navedeno" +msgstr "Ako je artikal varijanta drugog artikla, opis, slika, cjena, PDV itd. bit će postavljeni iz predloška osim ako nije eksplicitno navedeno" #. Description of the 'Get Items for Purchase / Transfer' (Button) field in #. DocType 'Production Plan' @@ -23932,7 +24004,7 @@ msgstr "Ako su artikli na zalihama, nastavi s Prijenosom Materijala ili Nabavom. #. (Link) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "If mentioned, the system will allow only the users with this Role to create or modify any stock transaction earlier than the latest stock transaction for a specific item and warehouse. If set as blank, it allows all users to create/edit back-dated transactions." -msgstr "Ako je postavljeno, sistem će dozvoliti samo korisnicima sa ovom ulogom da kreiraju ili modifikuju bilo koju transakciju zaliha ranije od poslednje transakcije zaliha za određeni artikal i skladište. Ako je postavljeno kao prazno, omogućava svim korisnicima da kreiraju/uređuju transakcije sa datumom unazad." +msgstr "Ako je postavljeno, sistem će dozvoliti samo korisnicima sa ovom ulogom da izrade ili modifikuju bilo koju transakciju zaliha ranije od poslednje transakcije zaliha za određeni artikal i skladište. Ako je postavljeno kao prazno, omogućava svim korisnicima da izrade/uređuju transakcije sa datumom unazad." #. Description of the 'To Package No.' (Int) field in DocType 'Packing Slip' #: erpnext/stock/doctype/packing_slip/packing_slip.json @@ -23947,31 +24019,31 @@ msgstr "Ukoliko više cjenovnih pravila nastavljaju da važe, korisnik treba ru #. field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "If no Item Price is found for an item in the Price List set in the transaction, prices from the Default Price List will be fetched." -msgstr "Ako se za artikl u cjenovniku postavljenom u transakciji ne pronađe cijena, cijene će se preuzeti iz standard cjenovnika." +msgstr "Ako se za artikl u cjenovniku postavljenom u transakciji ne pronađe cjena, cjene će se preuzeti iz standard cjenovnika." #. Description of the 'Automatically add taxes from Taxes and Charges Template' #. (Check) field in DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." -msgstr "Ako Pdv nije postavljen i Šablon Pdv i Naknada je odabran, sistem će automatski primijeniti Pdv iz odabranog šablona." +msgstr "Ako Pdv nije postavljen i Predložak Pdv i Naknada je odabran, sistem će automatski primijeniti Pdv iz odabranog predloška." -#: erpnext/stock/stock_ledger.py:2152 +#: erpnext/stock/stock_ledger.py:2200 msgid "If not, you can Cancel / Submit this entry" msgstr "Ako ne, možete Otkazati / Podnijeti ovaj unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:201 msgid "If party does not exist, create it using the Customer Name field." -msgstr "Ako stranka ne postoji, kreirajte je pomoću polja Ime Klijenta." +msgstr "Ako stranka ne postoji, izradi je pomoću polja Ime Klijenta." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:202 msgid "If party does not exist, create it using the Supplier Name field." -msgstr "Ako stranka ne postoji, kreirajte je pomoću polja Ime Dobavljača." +msgstr "Ako stranka ne postoji, izradi je pomoću polja Ime Dobavljača." #. Description of the 'Free Item Rate' (Currency) field in DocType 'Pricing #. Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "If rate is zero then item will be treated as \"Free Item\"" -msgstr "Ako je cijena nula, artikal će se tretirati kao \"Besplatni Artikal\"" +msgstr "Ako je cjena nula, artikal će se tretirati kao \"Besplatni Artikal\"" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:259 msgid "If rule matches, then:" @@ -23979,7 +24051,7 @@ msgstr "Ako je pravilo usklađeno, onda:" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:51 msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field." -msgstr "Ako je odabrano Cijenovno Pravilo napravljeno za 'Cijenu', ono će yamjenuti Cijenovnik. Cijenovno Pravilo cijena je konačna cijena, tako da se ne treba primjenjivati daljnji popust. Stoga će se u transakcijama poput Narudžbenice, Narudžbenice itd., cijena postaviti u polje 'Cijena', a ne u polje 'Cijena Cijenovnika'." +msgstr "Ako je odabrano Cjenovno Pravilo napravljeno za 'Cjenu', ono će yamjenuti Cjenovnik. Cjenovno Pravilo cjena je konačna cjena, tako da se ne treba primjenjivati daljnji popust. Stoga će se u transakcijama poput Narudžbenice, Narudžbenice itd., cjena postaviti u polje 'Cjena', a ne u polje 'Cjena Cjenovnika'." #. Description of the 'Default Accounts' (Table) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json @@ -23992,16 +24064,16 @@ msgstr "Ako je postavljeno, knjigovodstveni unosi za ovog klijenta knjižiti će msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations." msgstr "Ako je postavljeno, sistem ne koristi korisnikovu e-poštu ili standardni odlazni e-mail račun za slanje zahtjeva za ponudu." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1276 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1287 msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected." msgstr "Ako Sastavnica rezultira otpadnim materijalom, potrebno je odabrati Skladište Otpada." #. Description of the 'Frozen' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json msgid "If the account is frozen, entries are allowed to restricted users." -msgstr "Ako je račun zamrznut, unosi su dozvoljeni ograničenim korisnicima." +msgstr "Ako je račun zatvoren, unosi su dozvoljeni ograničenim korisnicima." -#: erpnext/stock/stock_ledger.py:2145 +#: erpnext/stock/stock_ledger.py:2193 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Ako se transakcije artikla vrši kao artikal nulte stope vrijednosti u ovom unosu, omogući 'Dozvoli Nultu Stopu Vrednovanja' u {0} Postavkama Artikla." @@ -24011,9 +24083,9 @@ msgstr "Ako se transakcije artikla vrši kao artikal nulte stope vrijednosti u o msgid "If the reorder check is set at the Group warehouse level, the available quantity becomes the sum of the projected quantities of all its child warehouses." msgstr "Ako je provjera ponovne narudžbe postavljena na nivou grupnog skladišta, dostupna količina postaje zbir planiranih količina svih njegovih podređenih skladišta." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1295 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1306 msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed." -msgstr "Ako odabrana Sastavnica ima Operacije spomenute u njoj, sistem će preuzeti sve operacije iz nje, i te vrijednosti se mogu promijeniti." +msgstr "Ako odabrana Sastavnica ima Radnje spomenute u njoj, sistem će preuzeti sve radnje iz nje, i te vrijednosti se mogu promijeniti." #. Description of the 'Catch All' (Link) field in DocType 'Communication #. Medium' @@ -24029,25 +24101,25 @@ msgstr "Ako nema kolone naslova, koristite kolonu koda za naslov." #. in DocType 'Payment Terms Template' #: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json msgid "If this checkbox is checked, paid amount will be splitted and allocated as per the amounts in payment schedule against each payment term" -msgstr "Ako je ovo polje označeno, plaćeni iznos će se podijeliti i dodijeliti naspram iznosa u rasporedu plaćanja za svaki rok plaćanja" +msgstr "Ako je ovo polje odabrano, plaćeni iznos će se podijeliti i dodijeliti naspram iznosa u rasporedu plaćanja za svaki rok plaćanja" #. Description of the 'Follow Calendar Months' (Check) field in DocType #. 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "If this is checked subsequent new invoices will be created on calendar month and quarter start dates irrespective of current invoice start date" -msgstr "Ako je ovo označeno, naredne nove fakture će se kreirati na datume početka kalendarskog mjeseca i kvartala, bez obzira na datum početka tekuće fakture" +msgstr "Ako je ovo odabrano, naredne nove fakture će se izraditi na datume početka kalendarskog mjeseca i kvartala, bez obzira na datum početka tekuće fakture" #. Description of the 'Submit Journal entries' (Check) field in DocType #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "If this is unchecked Journal Entries will be saved in a Draft state and will have to be submitted manually" -msgstr "Ako ovo nije označeno, Nalozi Knjiženja će biti spremljeni u stanju Nacrta i morat će se podnijeti ručno" +msgstr "Ako ovo nije odabrano, Nalozi Knjiženja će biti spremljeni u stanju Nacrta i morat će se podnijeti ručno" #. Description of the 'Book deferred entries via Journal Entry' (Check) field #. in DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "If this is unchecked, direct GL entries will be created to book deferred revenue or expense" -msgstr "Ako ovo nije označeno, kreirat će se direktni registar unosi za knjiženje odgođenih prihoda ili rashoda" +msgstr "Ako ovo nije odabrano, izraditi će se direktni registar unosi za knjiženje odgođenih prihoda ili rashoda" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:763 msgid "If this is undesirable please cancel the corresponding Payment Entry." @@ -24060,23 +24132,23 @@ msgstr "Ako ovaj artikal ima varijante, onda se ne može odabrati u prodajnim na #: erpnext/buying/doctype/buying_settings/buying_settings.js:76 msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice or Receipt without creating a Purchase Order first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Order' checkbox in the Supplier master." -msgstr "Ako je ova opcija konfigurirana kao 'Da', Sistem će vas spriječiti da kreirate Nabavnu Fakturu ili Račun bez prethodnog kreiranja Nabavnog Naloga. Ova konfiguracija se može zaobići za određenog dobavljača tako što će se omogućiti 'Dozvoli kreiranje Nabavne Fakture bez Nabavnog Naloga' u Postavkama Dobavljača." +msgstr "Ako je ova opcija konfigurirana kao 'Da', Sistem će vas spriječiti da izradi Nabavnu Fakturu ili Račun bez prethodnog izrade Nabavnog Naloga. Ova konfiguracija se može zaobići za određenog dobavljača tako što će se omogućiti 'Dozvoli izradu Nabavne Fakture bez Nabavnog Naloga' u Postavkama Dobavljača." #: erpnext/buying/doctype/buying_settings/buying_settings.js:83 msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Receipt' checkbox in the Supplier master." -msgstr "Ako je ova opcija konfigurirana kao 'Da', Sistem će vas spriječiti da kreirate Nabavnu Fakturu bez prethodnog kreiranja Nabavnog Računa. Ova konfiguracija se može poništiti za određenog dobavljača tako što će se omogućiti 'Dozvoli kreiranje Nabavne Fakture bez Nabavnog Računa' u Postavkama Dobavljača." +msgstr "Ako je ova opcija konfigurirana kao 'Da', Sistem će vas spriječiti da izradi Nabavnu Fakturu bez prethodnog izrade Nabavnog Računa. Ova konfiguracija se može poništiti za određenog dobavljača tako što će se omogućiti 'Dozvoli izradu Nabavne Fakture bez Nabavnog Računa' u Postavkama Dobavljača." #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:10 msgid "If ticked, multiple materials can be used for a single Work Order. This is useful if one or more time consuming products are being manufactured." -msgstr "Ako je označeno, više materijala se može koristiti za jedan Radni Nalog. Ovo je korisno ako se proizvodi jedan ili više proizvoda za koje treba više vremena." +msgstr "Ako je odabrano, više materijala se može koristiti za jedan Radni Nalog. Ovo je korisno ako se proizvodi jedan ili više proizvoda za koje treba više vremena." #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:24 msgid "If ticked, the BOM cost will be automatically updated based on Valuation Rate / Price List Rate / last purchase rate of raw materials." -msgstr "Ako je označeno, trošak Sastavnice će se automatski ažurirati na osnovu Stope Vrednovanja / Cijene Cijenovnika / posljednje nabavne cijene sirovina." +msgstr "Ako je odabrano, trošak Sastavnice će se automatski ažurirati na osnovu Stope Vrednovanja / Cjene Cjenovnika / posljednje nabavne cjene sirovina." #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:82 msgid "If two or more Pricing Rules are found based on the above conditions, Priority is applied. Priority is a number between 0 to 20 while default value is zero (blank). Higher number means it will take precedence if there are multiple Pricing Rules with same conditions." -msgstr "Ako se pronađu dva ili više pravila za određivanje cijena na osnovu gore navedenih uslova, primjenjuje se prioritet. Prioritet je broj između 0 i 20, dok je podrazumijevana vrijednost nula (prazno). Veći broj znači da će imati prioritet ako postoji više pravila za određivanje cijena sa istim uslovima." +msgstr "Ako se pronađu dva ili više pravila za određivanje cjena na osnovu gore navedenih uslova, primjenjuje se prioritet. Prioritet je broj između 0 i 20, dok je podrazumijevana vrijednost nula (prazno). Veći broj znači da će imati prioritet ako postoji više pravila za određivanje cjena sa istim uslovima." #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:31 msgid "If unlimited expiry for the Loyalty Points, keep the Expiry Duration empty or 0." @@ -24088,7 +24160,7 @@ msgstr "Ako je neograničen rok trajanja za bodove lojalnosti, ostavite trajanje msgid "If yes, then this warehouse will be used to store rejected materials" msgstr "Ako da, onda će se ovo skladište koristiti za skladištenje odbijenog materijala" -#: erpnext/stock/doctype/item/item.js:1568 +#: erpnext/stock/doctype/item/item.js:1589 msgid "If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item." msgstr "Ako održavate zalihe ovog artikla u svojim zalihama, Sistem će napraviti unos u registar zaliha za svaku transakciju ovog artikla." @@ -24096,20 +24168,20 @@ msgstr "Ako održavate zalihe ovog artikla u svojim zalihama, Sistem će napravi #. 'Payment Reconciliation' #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json msgid "If you need to reconcile particular transactions against each other, then please select accordingly. If not, all the transactions will be allocated in FIFO order." -msgstr "Ako trebate usaglasiti određene transakcije jedne s drugima, odaberite u skladu s tim. U suprotnom, sve transakcije će biti dodijeljene FIFO redoslijedom." +msgstr "Ako trebate usaglasiti određene transakcije jedne s drugima, odaberi u skladu s tim. U suprotnom, sve transakcije će biti dodijeljene FIFO redoslijedom." #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:92 msgid "If you still want to proceed, please disable {0} checkbox." msgstr "Ako i dalje želite nastaviti, molimo onemogućite \" {0}\"." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:475 msgid "If you still want to proceed, please enable {0}." msgstr "Ako i dalje želite da nastavite, omogući {0}." #. Description of the 'Sequence ID' (Int) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "If you want to run operations in parallel, keep the same sequence ID for them." -msgstr "Ako želite paralelno izvršavati operacije, zadržite isti ID sekvence za njih." +msgstr "Ako želite paralelno izvršavati radnje, zadržite isti ID sekvence za njih." #: erpnext/accounts/doctype/pricing_rule/utils.py:375 msgid "If you {0} {1} quantities of the item {2}, the scheme {3} will be applied on the item." @@ -24163,13 +24235,13 @@ msgstr "Zanemari Završno Stanje" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/selling/doctype/sales_order/sales_order.json msgid "Ignore Default Payment Terms Template" -msgstr "Zanemari Šablon Standard Uslova Plaćanja" +msgstr "Zanemari Predložak Standard Uslova Plaćanja" #. Label of the ignore_employee_time_overlap (Check) field in DocType 'Projects #. Settings' #: erpnext/projects/doctype/projects_settings/projects_settings.json msgid "Ignore Employee Time Overlap" -msgstr "Zanemari preklapanje vremena Personala" +msgstr "Zanemari preklapanje vremena Osoblja" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:145 msgid "Ignore Empty Stock" @@ -24216,11 +24288,11 @@ msgstr "Zanemari Početno kontrolu za izvještaj" #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Ignore Pricing Rule" -msgstr "Zanemari Pravilo Cijena" +msgstr "Zanemari Pravilo Cjena" #: erpnext/selling/page/point_of_sale/pos_payment.js:335 msgid "Ignore Pricing Rule is enabled. Cannot apply coupon code." -msgstr "Zanemari da je Pravilnik Cijena omogućen. Nije moguće primijeniti kod kupona." +msgstr "Zanemari da je Pravilnik Cjena omogućen. Nije moguće primijeniti kod kupona." #. Label of the ignore_cr_dr_notes (Check) field in DocType 'Process Statement #. Of Accounts' @@ -24267,9 +24339,9 @@ msgstr "Zanemari preklapanje vremena Radne Stanice" #. DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports" -msgstr "Zanemaruje naslijeđe polje 'Početno' u unosu Knjigovodstva koje omogućava dodavanje početnog stanja nakon što je sistem u upotrebi prilikom generiranja izvještaja" +msgstr "Zanemaruje naslijeđe polje 'Početno' u unosu Knjigovodstva koje omogućava dodavanje početnog stanja nakon što je sistem u upotrebi prilikom izrade izvještaja" -#: erpnext/stock/doctype/item/item.py:269 +#: erpnext/stock/doctype/item/item.py:274 msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}." msgstr "Slika u opisu je uklonjena. Da biste onemogućili ovo ponašanje, poništite oznaku \"{0}\" u {1}." @@ -24303,7 +24375,7 @@ msgstr "Uvoz Podataka" #: erpnext/setup/doctype/employee/employee_list.js:16 msgid "Import Employees" -msgstr "Uvoz Personala" +msgstr "Uvezi Osoblje" #: erpnext/edi/doctype/code_list/code_list.js:7 #: erpnext/edi/doctype/code_list/code_list_list.js:3 @@ -24345,7 +24417,7 @@ msgstr "Uvezi Koristeći CSV datoteku" #: erpnext/edi/doctype/code_list/code_list_import.js:131 msgid "Import completed. {0} common codes created." -msgstr "Uvoz završen. Kreirano {0} zajedničkih kodova." +msgstr "Uvoz završen. Izrađeno {0} zajedničkih kodova." #: erpnext/stock/doctype/item_price/item_price.js:38 msgid "Import in Bulk" @@ -24353,7 +24425,7 @@ msgstr "Masovni Uvoz" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:206 msgid "Import template should be of type .csv, .xlsx, .xls or .pdf" -msgstr "Šablon za uvoz treba biti tipa .csv, .xlsx, .xls ili .pdf" +msgstr "Predložak za uvoz treba biti tipa .csv, .xlsx, .xls ili .pdf" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:277 msgid "Import your bank statement to get started." @@ -24415,7 +24487,7 @@ msgstr "U Valuti Stranke" #. Depreciation Schedule' #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json msgid "In Percentage" -msgstr "U Procentima" +msgstr "U Postotcima" #. Option for the 'Qualification Status' (Select) field in DocType 'Lead' #. Option for the 'Status' (Select) field in DocType 'Production Plan' @@ -24434,13 +24506,13 @@ msgid "In Production" msgstr "U Proizvodnji" #: erpnext/stock/report/available_serial_no/available_serial_no.py:112 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/stock_balance/stock_balance.py:547 #: erpnext/stock/report/stock_ledger/stock_ledger.py:317 msgid "In Qty" msgstr "U Količini" -#: erpnext/public/js/templates/shop_floor_template.html:659 +#: erpnext/public/js/templates/shop_floor_template.html:679 msgid "In Queue" msgstr "U redu čekanja" @@ -24458,11 +24530,11 @@ msgstr "Na Skladištu" msgid "In Transit" msgstr "U Tranzitu" -#: erpnext/stock/doctype/material_request/material_request.js:477 +#: erpnext/stock/doctype/material_request/material_request.js:478 msgid "In Transit Transfer" msgstr "U Tranzitnom Prenosu" -#: erpnext/stock/doctype/material_request/material_request.js:446 +#: erpnext/stock/doctype/material_request/material_request.js:447 msgid "In Transit Warehouse" msgstr "U Tranzitnom Skladištu" @@ -24552,7 +24624,7 @@ msgstr "U Minutama" msgid "In row {0} of Appointment Booking Slots: \"To Time\" must be later than \"From Time\"." msgstr "U redu {0} Rezervacija Termina: \"Do vremena\" mora biti kasnije od \"Od vremena\"." -#: erpnext/public/js/templates/shop_floor_template.html:815 +#: erpnext/public/js/templates/shop_floor_template.html:835 msgid "In source" msgstr "U izvoru" @@ -24569,9 +24641,9 @@ msgstr "U slučaju višeslojnog programa, klijenti će biti automatski raspoređ msgid "In this case, the amount will be calculated as 25% of the transaction amount. If the transaction amount is 200, then this will be calculated as 200 * 0.25 = 50." msgstr "U ovom slučaju, iznos će biti izračunat kao 25% iznosa transakcije. Ako je iznos transakcije 200, onda će se to izračunati kao 200 * 0,25 = 50." -#: erpnext/stock/doctype/item/item.js:1601 +#: erpnext/stock/doctype/item/item.js:1622 msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc." -msgstr "U ovoj sekciji možete definirati zadane postavke transakcije koje se odnose na cijelo poduzeće za ovaj artikal. Npr. Standard Skladište, Standard Cjenovnik, Dobavljač itd." +msgstr "U ovoj sekciji možete definirati standard postavke transakcije koje se odnose na cijelo poduzeće za ovaj artikal. Npr. Standard Skladište, Standard Cjenovnik, Dobavljač itd." #. Label of a Link in the CRM Workspace #. Name of a report @@ -24649,13 +24721,13 @@ msgstr "Uključi Zatvorene Naloge" msgid "Include Default FB Assets" msgstr "Uključi standard Finansijski Registar Imovinu" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:45 -#: erpnext/accounts/report/cash_flow/cash_flow.js:37 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:52 +#: erpnext/accounts/report/cash_flow/cash_flow.js:44 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:131 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:85 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:29 #: erpnext/accounts/report/general_ledger/general_ledger.js:193 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:46 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:53 #: erpnext/accounts/report/trial_balance/trial_balance.js:105 msgid "Include Default FB Entries" msgstr "Uključi standard unose Finansijskog Registra" @@ -24811,8 +24883,8 @@ msgstr "Uključujući artikle za podsklopove" #: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 -#: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 +#: erpnext/accounts/report/financial_statements.py:1004 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:204 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Prihod" @@ -24838,6 +24910,10 @@ msgstr "Prihod" msgid "Income Account" msgstr "Račun Prihoda" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:86 +msgid "Income Account Validation Error" +msgstr "" + #. Label of the income_and_expense_account (Section Break) field in DocType #. 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -24849,7 +24925,9 @@ msgstr "Prihodi & Rashodi" msgid "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront." msgstr "Prihod od ovog artikla bit će priznat tokom nekoliko mjeseci umjesto odjednom. Na primjer: godišnja pretplata plaćena unaprijed." +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Incoming Bills" msgstr "Dolazne Fakture" @@ -24864,7 +24942,9 @@ msgstr "Raspored Obrade Dolaznih Poziva" msgid "Incoming Call Settings" msgstr "Postavke Dolaznog Poziva" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Incoming Payment" msgstr "Dolazna Plaćanja" @@ -24894,7 +24974,7 @@ msgstr "Nabavna Cjena (Obračun Troškova)" msgid "Incoming call from {0}" msgstr "Dolazni poziv od {0}" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:115 msgid "Incompatible Setting Detected" msgstr "Otkrivena nekompatibilna postavka" @@ -24911,7 +24991,7 @@ msgstr "Netačna količina stanja nakon transakcije" msgid "Incorrect Batch Consumed" msgstr "Potrošena Pogrešna Šarža" -#: erpnext/stock/doctype/item/item.py:604 +#: erpnext/stock/doctype/item/item.py:609 msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu" @@ -25028,7 +25108,7 @@ msgstr "Povećanje Vijeka Trajanja Imovine (mjeseci)" msgid "Increment" msgstr "Povećanje" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:98 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:100 msgid "Increment cannot be 0" msgstr "Povećanje ne može biti 0" @@ -25132,7 +25212,7 @@ msgstr "Inicijaliziraj Tabelu Sažetka" msgid "Initiated" msgstr "Pokrenut" -#: erpnext/public/js/shop_floor/shop_floor.js:964 +#: erpnext/public/js/shop_floor/shop_floor.js:1000 msgid "Inspect {0} for job card {1}" msgstr "Kontroliši {0} za radnu karticu {1}" @@ -25144,7 +25224,7 @@ msgid "Inspected By" msgstr "Inspektor" #: erpnext/manufacturing/doctype/job_card/job_card.py:892 -#: erpnext/public/js/shop_floor/shop_floor.js:1002 +#: erpnext/public/js/shop_floor/shop_floor.js:1038 #: erpnext/stock/services/quality_inspection_service.py:147 msgid "Inspection Rejected" msgstr "Inspekcija Odbijena" @@ -25199,7 +25279,7 @@ msgstr "Napomena Instalacije" msgid "Installation Note Item" msgstr "Stavka Napomene Instalacije " -#: erpnext/stock/doctype/delivery_note/delivery_note.py:623 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:640 msgid "Installation Note {0} has already been submitted" msgstr "Napomena Instalacije {0} je već poslana" @@ -25240,22 +25320,22 @@ msgstr "Nedovoljan Kapacitet" #: erpnext/accounts/services/child_item_update.py:213 #: erpnext/accounts/services/child_item_update.py:235 -#: erpnext/controllers/accounts_controller.py:1734 -#: erpnext/controllers/accounts_controller.py:1740 -#: erpnext/controllers/accounts_controller.py:1762 +#: erpnext/controllers/accounts_controller.py:1661 +#: erpnext/controllers/accounts_controller.py:1667 +#: erpnext/controllers/accounts_controller.py:1689 msgid "Insufficient Permissions" msgstr "Nedovoljne Dozvole" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:466 #: erpnext/stock/doctype/pick_list/pick_list.py:148 #: erpnext/stock/doctype/pick_list/pick_list.py:166 -#: erpnext/stock/doctype/pick_list/pick_list.py:1118 -#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1827 -#: erpnext/stock/stock_ledger.py:2334 +#: erpnext/stock/doctype/pick_list/pick_list.py:1139 +#: erpnext/stock/serial_batch_bundle.py:1243 erpnext/stock/stock_ledger.py:1875 +#: erpnext/stock/stock_ledger.py:2382 msgid "Insufficient Stock" msgstr "Nedovoljne Zalihe" -#: erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2397 msgid "Insufficient Stock for Batch" msgstr "Nedovoljne Zalihe za Šaržu" @@ -25385,7 +25465,7 @@ msgstr "Troškovi Kamata" msgid "Interest Income" msgstr "Prihod od Kamata" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2727 msgid "Interest and/or dunning fee" msgstr "Kamata i/ili Naknada Opomene" @@ -25410,7 +25490,7 @@ msgstr "Interni" msgid "Internal Customer Accounting" msgstr "Knjigovodstvo Internog Klijenta" -#: erpnext/selling/doctype/customer/customer.py:259 +#: erpnext/selling/doctype/customer/customer.py:271 msgid "Internal Customer for company {0} already exists" msgstr "Interni Klijent za {0} već postoji" @@ -25436,7 +25516,7 @@ msgstr "Nedostaje Interna Prodajna Referenca" msgid "Internal Supplier Details" msgstr "Detalji Internog Dobavljača" -#: erpnext/buying/doctype/supplier/supplier.py:181 +#: erpnext/buying/doctype/supplier/supplier.py:190 msgid "Internal Supplier for company {0} already exists" msgstr "Interni Dobavljač za {0} već postoji" @@ -25497,8 +25577,8 @@ msgstr "Interval bi trebao biti između 1 i 59 minuta" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:381 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:770 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:780 #: erpnext/accounts/services/taxes.py:271 #: erpnext/accounts/services/taxes.py:279 #: erpnext/assets/doctype/asset_category/asset_category.py:69 @@ -25511,7 +25591,7 @@ msgid "Invalid Accounting Dimension" msgstr "Nevažeća Knjigovodstvena Dimenzija" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:402 -#: erpnext/accounts/doctype/payment_request/payment_request.py:1166 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1167 msgid "Invalid Allocated Amount" msgstr "Nevažeći Dodijeljeni Iznos" @@ -25523,11 +25603,11 @@ msgstr "Nevažeći Iznos" msgid "Invalid Attribute" msgstr "Nevažeći Atribut" -#: erpnext/stock/doctype/item/item.js:1195 +#: erpnext/stock/doctype/item/item.js:1216 msgid "Invalid Attribute Values" msgstr "Nevažeće Vrijednosti Atributa" -#: erpnext/controllers/accounts_controller.py:530 +#: erpnext/controllers/accounts_controller.py:515 msgid "Invalid Auto Repeat Date" msgstr "Nevažeći Datum Automatskog Ponavljanja" @@ -25560,7 +25640,7 @@ msgstr "Nevažeće polje poduzeća" msgid "Invalid Company for Inter Company Transaction." msgstr "Nevažeće poduzeće za transakcije među poduzećima." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:972 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:978 msgid "Invalid Configuration" msgstr "Nevažeća Konfiguracija" @@ -25570,7 +25650,7 @@ msgstr "Nevažeća Konfiguracija" msgid "Invalid Cost Center" msgstr "Nevažeći Centar Troškova" -#: erpnext/selling/doctype/customer/customer.py:372 +#: erpnext/selling/doctype/customer/customer.py:386 msgid "Invalid Customer Group" msgstr "Nevažeća Klijent Grupa" @@ -25625,7 +25705,7 @@ msgstr "Nevažeća Grupa po" msgid "Invalid Item" msgstr "Nevažeći Artikal" -#: erpnext/stock/doctype/item/item.py:1566 +#: erpnext/stock/doctype/item/item.py:1571 msgid "Invalid Item Defaults" msgstr "Nevažeće Standard Postavke Artikla" @@ -25686,7 +25766,7 @@ msgstr "Nevažeća Nabavna Faktura" msgid "Invalid Qty" msgstr "Nevažeća Količina" -#: erpnext/controllers/accounts_controller.py:999 +#: erpnext/controllers/accounts_controller.py:926 msgid "Invalid Quantity" msgstr "Nevažeća Količina" @@ -25709,9 +25789,9 @@ msgstr "Nevažeći Raspored" #: erpnext/controllers/selling_controller.py:312 msgid "Invalid Selling Price" -msgstr "Nevažeća Prodajna Cijena" +msgstr "Nevažeća Prodajna Cjena" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:962 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:975 msgid "Invalid Serial and Batch Bundle" msgstr "Nevažeći Serijski i Šaržni Paket" @@ -25728,7 +25808,7 @@ msgstr "Nevažeći Tip Stabla {0}" msgid "Invalid Upload" msgstr "Nevažeće Otpremljenje" -#: erpnext/controllers/item_variant.py:202 +#: erpnext/controllers/item_variant.py:264 msgid "Invalid Value" msgstr "Nevažeća Vrijednost" @@ -25741,9 +25821,9 @@ msgstr "Nevažeće Skladište" msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "Nevažeći iznos u knjigovodstvenim unosima {0} {1} za račun {2}: {3}" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:330 msgid "Invalid condition expression" -msgstr "Nevažeći Izraz Uvjeta" +msgstr "Nevažeći Izraz Uslova" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:38 #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:41 @@ -25758,17 +25838,17 @@ msgstr "Nevažeći URL datoteke" #: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:87 msgid "Invalid filter formula. Please check the syntax." -msgstr "Nevažeća formula filtera. Molimo provjerite sintaksu." +msgstr "Nevažeća formula filtera. Provjeri sintaksu." #: erpnext/selling/doctype/quotation/quotation.py:280 msgid "Invalid lost reason {0}, please create a new lost reason" -msgstr "Nevažeći izgubljeni razlog {0}, kreiraj novi izgubljeni razlog" +msgstr "Nevažeći izgubljeni razlog {0}, izradi novi izgubljeni razlog" -#: erpnext/stock/doctype/item/item.py:478 +#: erpnext/stock/doctype/item/item.py:483 msgid "Invalid naming series (. missing) for {0}" msgstr "Nevažeća serija imenovanja (. nedostaje) za {0}" -#: erpnext/accounts/doctype/payment_request/payment_request.py:730 +#: erpnext/accounts/doctype/payment_request/payment_request.py:731 msgid "Invalid parameter. 'dn' should be of type str" msgstr "Nevažeći parametar. 'dn' treba biti tipa str" @@ -25788,11 +25868,11 @@ msgstr "Nevažeći ključ rezultata. Odgovor:" msgid "Invalid search query" msgstr "Nevažeći upit pretrage" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:313 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:314 msgid "Invalid status group: {0}" msgstr "Nevažeća grupa statusa: {0}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1661 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1703 msgid "Invalid subcontract order field: {0}" msgstr "Nevažeći nalog podizvođača: {0}" @@ -25933,7 +26013,7 @@ msgstr "Popust Fakture" msgid "Invoice Document Type Selection Error" msgstr "Pogreška Odabira Faktura Tipa Dokumenta" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 msgid "Invoice Grand Total" msgstr "Ukupni Iznos Fakture" @@ -26019,11 +26099,11 @@ msgstr "Tip Fakture" #. Label of the invoice_type (Select) field in DocType 'POS Settings' #: erpnext/accounts/doctype/pos_settings/pos_settings.json msgid "Invoice Type Created via POS Screen" -msgstr "Tip Fakture kreirana putem Kase" +msgstr "Tip Fakture izrađena putem Kase" #: erpnext/projects/doctype/timesheet/timesheet.py:430 msgid "Invoice already created for all billing hours" -msgstr "Faktura je već kreirana za sve sate za fakturisanje" +msgstr "Faktura je već izrađena za sve sate za fakturisanje" #. Label of the invoice_and_billing_tab (Tab Break) field in DocType 'Accounts #. Settings' @@ -26033,12 +26113,12 @@ msgstr "Faktura & Fakturisanje" #: erpnext/projects/doctype/timesheet/timesheet.py:427 msgid "Invoice can't be made for zero billing hour" -msgstr "Faktura se ne može kreirati za nula sati za fakturisanje" +msgstr "Faktura se ne može izraditi za nula sati za fakturisanje" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:171 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:139 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:140 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:166 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:194 msgid "Invoiced Amount" @@ -26059,7 +26139,7 @@ msgstr "Fakturisana Količina" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1204 #: erpnext/accounts/report/accounts_payable/accounts_payable.js:270 #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:64 @@ -26098,16 +26178,11 @@ msgstr "Funkcije Fakturisanja" msgid "Inward" msgstr "Unutra" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Inward Order" -msgstr "Interni Nalog" - #. Label of the is_account_payable (Check) field in DocType 'Cheque Print #. Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "Is Account Payable" -msgstr "Račun Obaveze" +msgstr "Je Račun Obaveze" #. Label of the is_additional_item (Check) field in DocType 'Work Order Item' #. Label of the is_additional_item (Check) field in DocType 'Subcontracting @@ -26115,19 +26190,19 @@ msgstr "Račun Obaveze" #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json msgid "Is Additional Item" -msgstr "Dodatni Artikal" +msgstr "Je Dodatni Artikal" #. Label of the is_additional_transfer_entry (Check) field in DocType 'Stock #. Entry' #: erpnext/stock/doctype/stock_entry/stock_entry.json msgid "Is Additional Transfer Entry" -msgstr "Je Dodatni Transfer Unos" +msgstr "Je Dodatni Unos Prenosa" #. Label of the is_adjustment_entry (Check) field in DocType 'Stock Ledger #. Entry' #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json msgid "Is Adjustment Entry" -msgstr "Unos Podešavanja" +msgstr "Je Unos Podešavanja" #. Label of the is_advance (Select) field in DocType 'GL Entry' #. Label of the is_advance (Select) field in DocType 'Journal Entry Account' @@ -26143,22 +26218,22 @@ msgstr "Unos Podešavanja" #: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json msgid "Is Advance" -msgstr "Predujam" +msgstr "Je Predujam" #. Label of the is_alternative (Check) field in DocType 'Quotation Item' #: erpnext/selling/doctype/quotation/quotation.js:323 #: erpnext/selling/doctype/quotation_item/quotation_item.json msgid "Is Alternative" -msgstr "Alternativa" +msgstr "Je Alternativa" #. Label of the is_billable (Check) field in DocType 'Timesheet Detail' #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json msgid "Is Billable" -msgstr "Fakturisati" +msgstr "Je Naplativo" #: erpnext/setup/install.py:171 msgid "Is Billing Contact" -msgstr "Faktura Kontakt" +msgstr "Je Kontakt Naplate" #. Label of the is_cancelled (Check) field in DocType 'GL Entry' #. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Bundle' @@ -26170,13 +26245,13 @@ msgstr "Faktura Kontakt" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:57 msgid "Is Cancelled" -msgstr "Otkazano" +msgstr "Je Otkazano" #. Label of the is_cash_or_non_trade_discount (Check) field in DocType 'Sales #. Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is Cash or Non Trade Discount" -msgstr "Gotovinski ili Netrgovčki Popust" +msgstr "Je Gotovinski ili Netrgovinski Popust" #. Label of the is_company (Check) field in DocType 'Share Balance' #. Label of the is_company (Check) field in DocType 'Shareholder' @@ -26188,27 +26263,27 @@ msgstr "Je Poduzeće" #. Label of the is_company_account (Check) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json msgid "Is Company Account" -msgstr "Račun Poduzeća" +msgstr "Je Račun Poduzeća" #. Label of the is_consolidated (Check) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is Consolidated" -msgstr "Konsolidirano" +msgstr "Je Konsolidovano" #. Label of the is_container (Check) field in DocType 'Location' #: erpnext/assets/doctype/location/location.json msgid "Is Container" -msgstr "Kontejner" +msgstr "Je Kontejner" #. Label of the is_corrective_job_card (Check) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Is Corrective Job Card" -msgstr "Popravni Radni Nalog" +msgstr "Je Korektivni Radni Nalog" #. Label of the is_corrective_operation (Check) field in DocType 'Operation' #: erpnext/manufacturing/doctype/operation/operation.json msgid "Is Corrective Operation" -msgstr "Popravna Operacija" +msgstr "Je Korektivna Radnji" #. Label of the is_credit_card (Check) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -26220,7 +26295,7 @@ msgstr "Je Kreditna Kartica" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json msgid "Is Cumulative" -msgstr "Kumulativno" +msgstr "Je Kumulativno" #. Label of the is_customer_provided_item (Check) field in DocType 'Work Order #. Item' @@ -26236,46 +26311,46 @@ msgstr "Je Klijent Dostavljen Artikal" #. Label of the is_default (Check) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json msgid "Is Default Account" -msgstr "Standard Račun" +msgstr "Je Standard Račun" #. Label of the is_default_language (Check) field in DocType 'Dunning Letter #. Text' #: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json msgid "Is Default Language" -msgstr "Standard Jezik" +msgstr "Je Standard Jezik" #. Label of the dn_required (Select) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Is Delivery Note required to create Sales Invoice?" -msgstr "Da li je Otpremnica potrebna za kreiranje Prodajne Fakture?" +msgstr "Da li je Otpremnica potrebna za izradu Prodajne Fakture?" #. Label of the is_discounted (Check) field in DocType 'POS Invoice' #. Label of the is_discounted (Check) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is Discounted" -msgstr "Sniženo" +msgstr "Je Sniženo" #. Label of the is_exchange_gain_loss (Check) field in DocType 'Payment Entry #. Deduction' #: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json msgid "Is Exchange Gain / Loss?" -msgstr "Dobitak/Gubitak Deviznog Kursa?" +msgstr "Je Rezultat Deviznog Kursa?" #. Label of the is_expandable (Check) field in DocType 'BOM Creator Item' #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json msgid "Is Expandable" -msgstr "Proširivo" +msgstr "Je Proširivo" #. Label of the is_final_finished_good (Check) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Is Final Finished Good" -msgstr "Finalni Gotov Proizvod" +msgstr "Je Finalni Gotov Proizvod" #. Label of the is_finished_item (Check) field in DocType 'Stock Entry Detail' #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Is Finished Item" -msgstr "Gotov Artikal" +msgstr "Je Gotov Proizvod" #. Label of the is_fixed_asset (Check) field in DocType 'POS Invoice Item' #. Label of the is_fixed_asset (Check) field in DocType 'Purchase Invoice Item' @@ -26292,7 +26367,7 @@ msgstr "Gotov Artikal" #: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Is Fixed Asset" -msgstr "Fiksna Imovina" +msgstr "Je Fiksna Imovina" #. Label of the is_free_item (Check) field in DocType 'POS Invoice Item' #. Label of the is_free_item (Check) field in DocType 'Purchase Invoice Item' @@ -26313,7 +26388,7 @@ msgstr "Fiksna Imovina" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Is Free Item" -msgstr "Besplatni Artikal" +msgstr "Je Besplatani Artikal" #. Label of the is_frozen (Check) field in DocType 'Supplier' #. Label of the is_frozen (Check) field in DocType 'Customer' @@ -26321,17 +26396,17 @@ msgstr "Besplatni Artikal" #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:69 msgid "Is Frozen" -msgstr "Zaključan" +msgstr "Je Zatvoren" #. Label of the is_fully_depreciated (Check) field in DocType 'Asset' #: erpnext/assets/doctype/asset/asset.json msgid "Is Fully Depreciated" -msgstr "Potpuno Amortizovano" +msgstr "Je Potpuno Amortizovano" #. Label of the is_group (Check) field in DocType 'Warehouse' #: erpnext/stock/doctype/warehouse/warehouse.json msgid "Is Group Warehouse" -msgstr "Grupno Skladište" +msgstr "Je Grupno Skladište" #. Label of the is_half_day (Check) field in DocType 'Holiday' #. Label of the is_half_day (Check) field in DocType 'Holiday List' @@ -26349,7 +26424,7 @@ msgstr "Je Pola Dana" #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "Is Internal Customer" -msgstr "Interni Klijent" +msgstr "Je Interni Klijent" #. Label of the is_internal_supplier (Check) field in DocType 'Purchase #. Invoice' @@ -26362,7 +26437,7 @@ msgstr "Interni Klijent" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Is Internal Supplier" -msgstr "Interni Dobavljač" +msgstr "Je Interni Dobavljač" #. Label of the is_legacy (Check) field in DocType 'BOM Secondary Item' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json @@ -26381,12 +26456,12 @@ msgstr "Je Stari Otpadni Artikal" #. Label of the is_mandatory (Check) field in DocType 'Applicable On Account' #: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json msgid "Is Mandatory" -msgstr "Obavezno" +msgstr "Je Obavezno" #. Label of the is_milestone (Check) field in DocType 'Task' #: erpnext/projects/doctype/task/task.json msgid "Is Milestone" -msgstr "Prekretnica" +msgstr "Je Prekretnica" #. Label of the is_opening (Select) field in DocType 'GL Entry' #. Label of the is_opening (Select) field in DocType 'Journal Entry' @@ -26399,7 +26474,7 @@ msgstr "Prekretnica" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/stock/doctype/stock_entry/stock_entry.json msgid "Is Opening" -msgstr "Početno" +msgstr "Je Početno" #. Label of the is_opening (Select) field in DocType 'POS Invoice' #. Label of the is_opening (Select) field in DocType 'Purchase Invoice' @@ -26408,12 +26483,12 @@ msgstr "Početno" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is Opening Entry" -msgstr "Početni Unos" +msgstr "Je Početni Unos" #. Label of the is_outward (Check) field in DocType 'Serial and Batch Entry' #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json msgid "Is Outward" -msgstr "Dostava" +msgstr "Je Dostava" #. Label of the is_packed (Check) field in DocType 'Serial and Batch Bundle' #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json @@ -26422,29 +26497,29 @@ msgstr "Je Upakovan" #: erpnext/selling/doctype/sales_order/sales_order.js:402 msgid "Is Packed Item" -msgstr "Je Upakirani Artikal" +msgstr "Je Paket Artikal" #. Label of the is_paid (Check) field in DocType 'Purchase Invoice' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json msgid "Is Paid" -msgstr "Plaćeno" +msgstr "Je Plaćeno" #. Label of the is_paused (Check) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Is Paused" -msgstr "Pauzirano" +msgstr "Je Pauzirano" #. Label of the is_period_closing_voucher_entry (Check) field in DocType #. 'Account Closing Balance' #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json msgid "Is Period Closing Voucher Entry" -msgstr "Unos Verifikata za Yatvaranje Perioda" +msgstr "Je Unos Verifikata za Zatvaranje Perioda" #. Label of the is_phantom_bom (Check) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:68 msgid "Is Phantom BOM" -msgstr "Je Fantomska Sastavnica" +msgstr "Je Viritualna Sastavnica" #. Label of the is_phantom (Check) field in DocType 'BOM Creator' #. Label of the is_phantom_item (Check) field in DocType 'BOM Creator Item' @@ -26454,7 +26529,7 @@ msgstr "Je Fantomska Sastavnica" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:88 msgid "Is Phantom Item" -msgstr "Je Fantomski Artikal" +msgstr "Je Viritualni Artikal" #. Label of the is_product_bundle (Check) field in DocType 'POS Invoice Item' #. Label of the is_product_bundle (Check) field in DocType 'Sales Invoice Item' @@ -26472,17 +26547,17 @@ msgstr "Je Paket Artikala" #. Label of the po_required (Select) field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Is Purchase Order required for Purchase Invoice & Receipt creation?" -msgstr "Da li je Nabavni Nalog Obavezan za kreiranje Nabavne Fakture i Nabavnog Računa?" +msgstr "Da li je Nabavni Nalog Obavezan za izradu Nabavne Fakture i Nabavnog Računa?" #. Label of the pr_required (Select) field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Is Purchase Receipt required for Purchase Invoice creation?" -msgstr "Da li je Nabavni Račun obavezan za kreiranje Nabavne Fakture?" +msgstr "Da li je Nabavni Račun obavezan za izradu Nabavne Fakture?" #. Label of the is_debit_note (Check) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is Rate Adjustment Entry (Debit Note)" -msgstr "Unos Korekcije Artikla (Debit Faktura)" +msgstr "Je Unos Korekcije Cjene Artikla (Debit Faktura)" #. Label of the is_recursive (Check) field in DocType 'Pricing Rule' #. Label of the is_recursive (Check) field in DocType 'Promotional Scheme @@ -26490,17 +26565,17 @@ msgstr "Unos Korekcije Artikla (Debit Faktura)" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json msgid "Is Recursive" -msgstr "Rekuruzivno" +msgstr "Je Rekuruzivno" #. Label of the is_rejected (Check) field in DocType 'Serial and Batch Bundle' #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json msgid "Is Rejected" -msgstr "Odbijeno" +msgstr "Je Odbijeno" #. Label of the is_rejected_warehouse (Check) field in DocType 'Warehouse' #: erpnext/stock/doctype/warehouse/warehouse.json msgid "Is Rejected Warehouse" -msgstr "Odbijeno Skladište" +msgstr "Je Odbijeno Skladište" #. Label of the is_return (Check) field in DocType 'POS Invoice Reference' #. Label of the is_return (Check) field in DocType 'Sales Invoice Reference' @@ -26517,19 +26592,19 @@ msgstr "Odbijeno Skladište" #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Is Return" -msgstr "Povrat" +msgstr "Je Povrat" #. Label of the is_return (Check) field in DocType 'POS Invoice' #. Label of the is_return (Check) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is Return (Credit Note)" -msgstr "Povrat (Kredit Faktura)" +msgstr "Je Povrat (Kredit Faktura)" #. Label of the is_return (Check) field in DocType 'Purchase Invoice' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json msgid "Is Return (Debit Note)" -msgstr "Povrat (Debit Faktura)" +msgstr "Je Povrat (Debit Faktura)" #. Label of the is_rule_evaluated (Check) field in DocType 'Bank Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -26539,7 +26614,7 @@ msgstr "Je Pravilo Ocijenjeno" #. Label of the so_required (Select) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Is Sales Order required to create Sales Invoice/Delivery Note?" -msgstr "Da li je Prodajni Nalog obavezan za kreiranje Prodajne Fakture/Otpremnice?" +msgstr "Da li je Prodajni Nalog obavezan za izradu Prodajne Fakture/Otpremnice?" #. Label of the is_short_year (Check) field in DocType 'Fiscal Year' #: erpnext/accounts/doctype/fiscal_year/fiscal_year.json @@ -26579,7 +26654,7 @@ msgstr "Je Artikal Podsklopa" #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Is Subcontracted" -msgstr "Podizvođač" +msgstr "Je Podizvođač" #. Label of the is_sub_contracted_item (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -26599,17 +26674,17 @@ msgstr "Je Podizvođački Artikal" #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json #: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json msgid "Is Tax Withholding Account" -msgstr "Račun po Odbitku PDV" +msgstr "Je Račun po Odbitku PDV" #. Label of the is_template (Check) field in DocType 'Task' #: erpnext/projects/doctype/task/task.json msgid "Is Template" -msgstr "Šablon" +msgstr "Je Predložak" #. Label of the is_transporter (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Is Transporter" -msgstr "Dobavljač" +msgstr "Je Dobavljač" #: erpnext/setup/install.py:162 msgid "Is Your Company Address" @@ -26618,12 +26693,12 @@ msgstr "Je Adresa Vašeg Poduzeća" #. Label of the is_a_subscription (Check) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json msgid "Is a Subscription" -msgstr "Pretplata" +msgstr "Je Pretplata" #. Label of the is_created_using_pos (Check) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Is created using POS" -msgstr "Kreirana pomoću Kase" +msgstr "Je Izrađena korištenjem Kase" #. Label of the included_in_print_rate (Check) field in DocType 'Purchase Taxes #. and Charges' @@ -26632,7 +26707,7 @@ msgstr "Kreirana pomoću Kase" #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json #: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json msgid "Is this Tax included in Basic Rate?" -msgstr "PDV uključen u Osnovnu Cijenu?" +msgstr "Je PDV uključen u Osnovnu Cjenu?" #. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' #. Option for the 'Status' (Select) field in DocType 'Asset' @@ -26658,12 +26733,12 @@ msgstr "PDV uključen u Osnovnu Cijenu?" #: erpnext/support/workspace/support/support.json #: erpnext/workspace_sidebar/support.json msgid "Issue" -msgstr "Slučaj" +msgstr "Zahtjev" #. Name of a report #: erpnext/support/report/issue_analytics/issue_analytics.json msgid "Issue Analytics" -msgstr "Analiza Slučaja" +msgstr "Analiza Zahtjeva" #. Label of the issue_credit_note (Check) field in DocType 'Delivery Note' #: erpnext/stock/doctype/delivery_note/delivery_note.json @@ -26675,7 +26750,7 @@ msgstr "Izdaj Kreditnu Fakturu" msgid "Issue Date" msgstr "Datum Izdavanja" -#: erpnext/stock/doctype/material_request/material_request.js:180 +#: erpnext/stock/doctype/material_request/material_request.js:183 msgid "Issue Material" msgstr "Izdaj Materijala" @@ -26690,17 +26765,17 @@ msgstr "Izdaj Materijala" #: erpnext/support/workspace/support/support.json #: erpnext/workspace_sidebar/support.json msgid "Issue Priority" -msgstr "Prioritet Slučaja" +msgstr "Prioritet Zahtjeva" #. Label of the issue_split_from (Link) field in DocType 'Issue' #: erpnext/support/doctype/issue/issue.json msgid "Issue Split From" -msgstr "Slučaj Odvojen Od" +msgstr "Zahtjev Odvojen Od" #. Name of a report #: erpnext/support/report/issue_summary/issue_summary.json msgid "Issue Summary" -msgstr "Sažetak Slučaja" +msgstr "Sažetak Zahtjeva" #. Label of the issue_type (Link) field in DocType 'Issue' #. Name of a DocType @@ -26713,13 +26788,13 @@ msgstr "Sažetak Slučaja" #: erpnext/support/workspace/support/support.json #: erpnext/workspace_sidebar/support.json msgid "Issue Type" -msgstr "Tip Slučaja" +msgstr "Tip Zahtjeva" #. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in #. DocType 'Sales Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice." -msgstr "Izdaj debitnu notu na postojeću Prodajnu Fakturu kako biste prilagodili cijenu. Količina će biti zadržana iz originalne fakture." +msgstr "Izdaj debitnu notu na postojeću Prodajnu Fakturu kako biste prilagodili cjenu. Količina će biti zadržana iz originalne fakture." #. Option for the 'Current State' (Select) field in DocType 'Share Balance' #. Option for the 'Status' (Select) field in DocType 'Material Request' @@ -26740,7 +26815,7 @@ msgstr "Izdati Artikli na osnovu Radnog Naloga" #: erpnext/support/doctype/support_settings/support_settings.json #: erpnext/support/workspace/support/support.json msgid "Issues" -msgstr "Slučajevi" +msgstr "Zahtjevi" #. Label of the issuing_date (Date) field in DocType 'Driver' #. Label of the issuing_date (Date) field in DocType 'Driving License Category' @@ -26749,7 +26824,7 @@ msgstr "Slučajevi" msgid "Issuing Date" msgstr "Datum Izdavanja" -#: erpnext/stock/doctype/item/item.py:649 +#: erpnext/stock/doctype/item/item.py:654 msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Može potrajati i do nekoliko sati da tačne vrijednosti zaliha budu vidljive nakon spajanja artikala." @@ -26763,7 +26838,7 @@ msgstr "Sve je u redu!" #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" -msgstr "Nije moguće ravnomjerno raspodijeliti troškove kada je ukupan iznos nula, postavite 'Distribuiraj Naknade na Osnovu' kao 'Količina'" +msgstr "Nije moguće ravnomjerno raspodijeliti troškove kada je ukupan iznos nula, postavi 'Distribuiraj Naknade na Osnovu' kao 'Količina'" #. Label of the italic_text (Check) field in DocType 'Financial Report Row' #: erpnext/accounts/doctype/financial_report_row/financial_report_row.json @@ -26817,8 +26892,9 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json #: erpnext/controllers/taxes_and_totals.py:1246 +#: erpnext/controllers/trends.py:385 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/bom/bom.js:1088 +#: erpnext/manufacturing/doctype/bom/bom.js:1092 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:25 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:101 @@ -26851,7 +26927,7 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene" #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 -#: erpnext/stock/doctype/stock_settings/stock_settings.js:149 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:131 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:7 @@ -26860,7 +26936,7 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene" #: erpnext/stock/report/available_serial_no/available_serial_no.py:93 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js:24 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:32 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:76 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 #: erpnext/stock/report/item_price_stock/item_price_stock.js:8 #: erpnext/stock/report/item_prices/item_prices.py:50 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:88 @@ -26895,8 +26971,6 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene" #: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/manufacturing.json #: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json -#: erpnext/workspace_sidebar/subcontracting.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Item" msgstr "Artikal" @@ -27075,7 +27149,7 @@ msgstr "Artikal Korpe" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:314 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:68 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:37 -#: erpnext/accounts/report/gross_profit/gross_profit.py:312 +#: erpnext/accounts/report/gross_profit/gross_profit.py:314 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:148 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:167 #: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:37 @@ -27126,11 +27200,11 @@ msgstr "Artikal Korpe" #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 -#: erpnext/projects/doctype/timesheet/timesheet.js:214 +#: erpnext/projects/doctype/timesheet/timesheet.js:216 #: erpnext/public/js/controllers/transaction.js:2951 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 -#: erpnext/public/js/utils.js:753 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:608 +#: erpnext/public/js/utils.js:765 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -27330,7 +27404,7 @@ msgstr "Detalji Artikla" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/gross_profit/gross_profit.js:44 -#: erpnext/accounts/report/gross_profit/gross_profit.py:325 +#: erpnext/accounts/report/gross_profit/gross_profit.py:327 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:21 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:29 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:28 @@ -27345,6 +27419,7 @@ msgstr "Detalji Artikla" #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:30 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:40 #: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/trends.py:398 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json @@ -27380,7 +27455,7 @@ msgstr "Detalji Artikla" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/page/stock_balance/stock_balance.js:35 -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:43 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:54 #: erpnext/stock/report/delayed_item_report/delayed_item_report.js:48 #: erpnext/stock/report/delayed_order_report/delayed_order_report.js:48 #: erpnext/stock/report/item_prices/item_prices.py:52 @@ -27414,15 +27489,15 @@ msgstr "Standard Postavke Grupe Artikla" msgid "Item Group Name" msgstr "Naziv Grupe Artikla" -#: erpnext/setup/doctype/item_group/item_group.js:119 +#: erpnext/setup/doctype/item_group/item_group.js:136 msgid "Item Group Override" msgstr "Nadjačavanje Grupe Artikla" -#: erpnext/setup/doctype/item_group/item_group.js:82 +#: erpnext/setup/doctype/item_group/item_group.js:99 msgid "Item Group Tree" msgstr "Stablo Grupe Artikla" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:541 msgid "Item Group not mentioned in item master for item {0}" msgstr "Grupa Artikla nije postavljena u Postavci Artikla za Artikal {0}" @@ -27565,7 +27640,7 @@ msgstr "Proizvođač Artikla" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:74 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:71 -#: erpnext/accounts/report/gross_profit/gross_profit.py:319 +#: erpnext/accounts/report/gross_profit/gross_profit.py:321 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:34 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:154 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:173 @@ -27583,6 +27658,7 @@ msgstr "Proizvođač Artikla" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:34 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:206 +#: erpnext/controllers/trends.py:386 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:101 #: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json @@ -27616,7 +27692,7 @@ msgstr "Proizvođač Artikla" #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 #: erpnext/public/js/controllers/transaction.js:2957 -#: erpnext/public/js/utils.js:844 +#: erpnext/public/js/utils.js:856 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27646,7 +27722,7 @@ msgstr "Proizvođač Artikla" #: erpnext/stock/report/available_batch_report/available_batch_report.py:32 #: erpnext/stock/report/available_serial_no/available_serial_no.py:99 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:33 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:77 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:153 #: erpnext/stock/report/item_price_stock/item_price_stock.py:24 #: erpnext/stock/report/item_prices/item_prices.py:51 @@ -27703,13 +27779,13 @@ msgstr "Nadjačavanje Artikla" #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/selling.json msgid "Item Price" -msgstr "Cijena Artikla" +msgstr "Cjena Artikla" #. Label of the item_price_settings_section (Section Break) field in DocType #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Item Price Settings" -msgstr "Postavke Cijene Artikla" +msgstr "Postavke Cjene Artikla" #. Name of a report #. Label of a Link in the Stock Workspace @@ -27718,24 +27794,24 @@ msgstr "Postavke Cijene Artikla" #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Price Stock" -msgstr "Cijena Artikla na Zalihama" +msgstr "Cjena Artikla na Zalihama" -#: erpnext/stock/get_item_details.py:1182 -#: erpnext/stock/get_item_details.py:1206 +#: erpnext/stock/get_item_details.py:1181 +#: erpnext/stock/get_item_details.py:1205 msgid "Item Price added for {0} in Price List - {1}" -msgstr "Cijena artikla dodana za {0} u Cjenovniku - {1}" +msgstr "Cjena artikla dodana za {0} u Cjenovniku - {1}" #: erpnext/stock/doctype/item_price/item_price.py:140 msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates." -msgstr "Cijena Artikla se pojavljuje više puta na osnovu Cijenovnika, Dobavljača/Klijenta, Valute, Artikla, Šarže, Jedinice, Količine i Datuma." +msgstr "Cjena Artikla se pojavljuje više puta na osnovu Cjenovnika, Dobavljača/Klijenta, Valute, Artikla, Šarže, Jedinice, Količine i Datuma." -#: erpnext/stock/doctype/item/item.py:183 +#: erpnext/stock/doctype/item/item.py:187 msgid "Item Price created at rate {0}" -msgstr "Cijena Artikla stvorena po stopi {0}" +msgstr "Cjena Artikla stvorena po stopi {0}" -#: erpnext/stock/get_item_details.py:1165 +#: erpnext/stock/get_item_details.py:1164 msgid "Item Price updated for {0} in Price List {1}" -msgstr "Cijena Artikla je ažurirana za {0} u Cjenovniku {1}" +msgstr "Cjena Artikla je ažurirana za {0} u Cjenovniku {1}" #. Label of the item_prices_column (Column Break) field in DocType 'Item' #. Name of a report @@ -27744,7 +27820,7 @@ msgstr "Cijena Artikla je ažurirana za {0} u Cjenovniku {1}" #: erpnext/stock/report/item_prices/item_prices.json #: erpnext/stock/workspace/stock/stock.json msgid "Item Prices" -msgstr "Cijene Artikla" +msgstr "Cjene Artikla" #. Name of a DocType #. Label of the item_quality_inspection_parameter (Table) field in DocType @@ -27797,7 +27873,9 @@ msgid "Item Shortage Report" msgstr "Izvještaj o Nedostatku Artikla" #. Name of a DocType +#. Label of a Link in the Stock Workspace #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json +#: erpnext/stock/workspace/stock/stock.json msgid "Item Standard Cost" msgstr "Standardni Trošak Artikla" @@ -27874,7 +27952,6 @@ msgstr "Artikal Pdv Red {0}: Račun mora pripadati - {1}" #. Label of the item_tax_template (Link) field in DocType 'Item Tax' #. Label of the item_tax_template (Link) field in DocType 'Purchase Receipt #. Item' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/item_tax_template/item_tax_template.json #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -27887,14 +27964,13 @@ msgstr "Artikal Pdv Red {0}: Račun mora pripadati - {1}" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/item_tax/item_tax.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/workspace_sidebar/taxes.json msgid "Item Tax Template" -msgstr "Šablon PDV-a za Artikal" +msgstr "Predložak PDV-a za Artikal" #. Name of a DocType #: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json msgid "Item Tax Template Detail" -msgstr "Datalji Šablona PDV- za Artikal" +msgstr "Datalji Predloška PDV- za Artikal" #. Label of the production_item (Link) field in DocType 'Work Order' #: erpnext/manufacturing/doctype/work_order/work_order.json @@ -27924,7 +28000,7 @@ msgstr "Detalji Varijante Artikla" #. Name of a DocType #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item -#: erpnext/stock/doctype/item/item.js:235 +#: erpnext/stock/doctype/item/item.js:250 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/erpnext_settings.json @@ -27932,11 +28008,11 @@ msgstr "Detalji Varijante Artikla" msgid "Item Variant Settings" msgstr "Postavke Varijante Artikla" -#: erpnext/stock/doctype/item/item.js:1417 +#: erpnext/stock/doctype/item/item.js:1438 msgid "Item Variant {0} already exists with same attributes" msgstr "Varijanta Artikla {0} već postoji sa istim atributima" -#: erpnext/stock/doctype/item/item.py:840 +#: erpnext/stock/doctype/item/item.py:845 msgid "Item Variants updated" msgstr "Varijante Artikla Ažurirane" @@ -28044,7 +28120,7 @@ msgstr "Detalji Artikla i Garancija" msgid "Item for row {0} does not match Material Request" msgstr "Artikal za red {0} ne odgovara Materijalnom Nalogu" -#: erpnext/stock/doctype/item/item.py:899 +#: erpnext/stock/doctype/item/item.py:904 msgid "Item has variants." msgstr "Artikal ima Varijante." @@ -28068,11 +28144,15 @@ msgstr "Naziv Artikla" #. Label of the operation (Link) field in DocType 'BOM Item' #: erpnext/manufacturing/doctype/bom_item/bom_item.json msgid "Item operation" -msgstr "Artikal Operacija" +msgstr "Artikal Radnji" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:622 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:635 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" -msgstr "Cijena Artikla je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja označena za artikal {0}" +msgstr "Cjena Artikla je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja označena za artikal {0}" + +#: erpnext/stock/doctype/material_request/material_request.py:231 +msgid "Item rates have been updated based on the selected Buying Price List {0}" +msgstr "" #. Label of the item (Link) field in DocType 'BOM' #. Label of the finished_good (Link) field in DocType 'Job Card' @@ -28089,7 +28169,7 @@ msgstr "Stopa vrednovanja artikla se preračunava s obzirom na iznos verifikata msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Ponovno knjiženje vrijednosti artikla je u toku. Izvještaj može prikazati netačnu procjenu artikla." -#: erpnext/stock/doctype/item/item.py:1056 +#: erpnext/stock/doctype/item/item.py:1061 msgid "Item variant {0} exists with same attributes" msgstr "Varijanta Artikla {0} postoji sa istim atributima" @@ -28114,7 +28194,7 @@ msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" msgstr "Artikal {0} ne može biti primljen u količini većoj od {1} u odnosu na {2} {3}" #: erpnext/assets/doctype/asset/asset.py:347 -#: erpnext/stock/doctype/item/item.py:695 +#: erpnext/stock/doctype/item/item.py:700 msgid "Item {0} does not exist" msgstr "Artikal {0} ne postoji" @@ -28123,7 +28203,7 @@ msgid "Item {0} does not exist in the system or has expired" msgstr "Artikal {0} ne postoji u sistemu ili je istekao" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1489 -#: erpnext/stock/services/serial_batch_bundle_service.py:388 +#: erpnext/stock/services/serial_batch_bundle_service.py:390 msgid "Item {0} does not exist." msgstr "Artikal {0} ne postoji." @@ -28147,27 +28227,27 @@ msgstr "Artikal {0} nema serijski broj. Samo serijski artikli mogu imati dostavu msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity." msgstr "Artikal {0} nema promjena u isporučenoj količini. Molimo vas da poništite odabir reda ako ne želite ažurirati njegovu količinu." -#: erpnext/stock/doctype/item/item.py:1278 +#: erpnext/stock/doctype/item/item.py:1283 msgid "Item {0} has reached its end of life on {1}" msgstr "Artikal {0} je dosego kraj svog vijeka trajanja {1}" -#: erpnext/stock/stock_ledger.py:164 +#: erpnext/stock/stock_ledger.py:168 msgid "Item {0} ignored since it is not a stock item" msgstr "Artikal {0} zanemaren jer nije artikal na zalihama" -#: erpnext/stock/get_item_details.py:357 +#: erpnext/stock/get_item_details.py:356 msgid "Item {0} is a template, please select one of its variants" -msgstr "Artikal {0} je šablon, molimo odaberite jednu od njenih varijanti" +msgstr "Artikal {0} je predložak, odaberi jednu od njenih varijanti" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Artikal {0} je već rezervisan/dostavljen naspram Prodajnog Naloga {1}." -#: erpnext/stock/doctype/item/item.py:1298 +#: erpnext/stock/doctype/item/item.py:1303 msgid "Item {0} is cancelled" msgstr "Artikal {0} je otkazan" -#: erpnext/stock/doctype/item/item.py:1282 +#: erpnext/stock/doctype/item/item.py:1287 msgid "Item {0} is disabled" msgstr "Artikal {0} je onemogućen" @@ -28179,7 +28259,7 @@ msgstr "Artikal {0} nije artikl za direktno slanje. Samo artikli za direktno sla msgid "Item {0} is not a serialized Item" msgstr "Artikal {0} nije serijalizirani Artikal" -#: erpnext/stock/doctype/item/item.py:1290 +#: erpnext/stock/doctype/item/item.py:1295 msgid "Item {0} is not a stock Item" msgstr "Artikal {0} nije artikal na zalihama" @@ -28187,11 +28267,11 @@ msgstr "Artikal {0} nije artikal na zalihama" msgid "Item {0} is not a subcontracted item" msgstr "Artikal {0} nije podizvođački artikal" -#: erpnext/stock/doctype/item/item.py:857 +#: erpnext/stock/doctype/item/item.py:862 msgid "Item {0} is not a template item." -msgstr "Artikal {0} nije šablon artikal." +msgstr "Artikal {0} nije predložak artikal." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1258 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1271 msgid "Item {0} is not active or end of life has been reached" msgstr "Artikal {0} nije aktivan ili je dostignut kraj životnog vijeka" @@ -28199,7 +28279,7 @@ msgstr "Artikal {0} nije aktivan ili je dostignut kraj životnog vijeka" msgid "Item {0} must be a Fixed Asset Item" msgstr "Artikal {0} mora biti artikal Fiksne Imovine" -#: erpnext/stock/get_item_details.py:363 +#: erpnext/stock/get_item_details.py:362 msgid "Item {0} must be a Non-Stock Item" msgstr "Artikal {0} mora biti artikal koji nije na zalihama" @@ -28215,18 +28295,18 @@ msgstr "Artikal {0} nije pronađen u tabeli 'Dostavljene Sirovine' u {1} {2}" msgid "Item {0} not found." msgstr "Artikal {0} nije pronađen." -#: erpnext/buying/doctype/purchase_order/purchase_order.py:315 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:316 msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)." msgstr "Artikal {0}: Količina Naloga {1} ne može biti manja od minimalne količine naloga {2} (definisano u artiklu)." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:573 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:600 msgid "Item {0}: {1} qty produced. " msgstr "Artikal {0}: {1} količina proizvedena. " #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" -msgstr "Cijene Cijenovnika po Artiklu" +msgstr "Cjene Cjenovnika po Artiklu" #. Name of a report #. Label of a Link in the Buying Workspace @@ -28265,9 +28345,9 @@ msgstr "Prodajni Registar po Artiklu" msgid "Item-wise sales Register" msgstr "Registar Prodaje po Artiklima" -#: erpnext/stock/get_item_details.py:767 +#: erpnext/stock/get_item_details.py:766 msgid "Item/Item Code required to get Item Tax Template." -msgstr "Artikal/Artikal Šifra je obavezan pri preuzimanju PDV Šablona Artikla." +msgstr "Artikal/Artikal Šifra je obavezan pri preuzimanju PDV Predloška Artikla." #: erpnext/manufacturing/doctype/bom/bom.py:484 msgid "Item: {0} does not exist in the system" @@ -28282,7 +28362,7 @@ msgstr "Artikal: {0} sa Jedinicom Zalihe: {1} ne može imati količinu frakcijsk #: erpnext/buying/workspace/buying/buying.json #: erpnext/workspace_sidebar/selling.json msgid "Items & Pricing" -msgstr "Artikli & Cijene" +msgstr "Artikli & Cjene" #. Label of a Card Break in the Stock Workspace #: erpnext/stock/workspace/stock/stock.json @@ -28293,16 +28373,11 @@ msgstr "Katalog Artikala" msgid "Items Filter" msgstr "Filter Artikala" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:218 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Artikli Obavezni" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Items To Be Received" -msgstr "Artikli koje treba Preuzeti" - #. Label of a Link in the Buying Workspace #. Name of a report #. Label of a Workspace Sidebar Item @@ -28315,15 +28390,15 @@ msgstr "Nabavni Artikli" #. Label of a Card Break in the Selling Workspace #: erpnext/selling/workspace/selling/selling.json msgid "Items and Pricing" -msgstr "Artikli & Cijene" +msgstr "Artikli & Cjene" #: erpnext/accounts/services/child_item_update.py:170 msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order." -msgstr "Artikli se ne mogu ažurirati jer je kreiran Interni Podizvođački Nalog na osnovu Podizvođačkog Prodajnog Naloga." +msgstr "Artikli se ne mogu ažurirati jer je izrađen Interni Podizvođački Nalog na osnovu Podizvođačkog Prodajnog Naloga." #: erpnext/accounts/services/child_item_update.py:162 msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}." -msgstr "Artikal se ne mođe ažurirati jer je Podizvođački Nalog kreiran naspram Nabavnog Naloga {0}." +msgstr "Artikal se ne mođe ažurirati jer je Podizvođački Nalog izrađen naspram Nabavnog Naloga {0}." #: erpnext/selling/doctype/sales_order/sales_order.js:1517 msgid "Items for Raw Material Request" @@ -28333,9 +28408,9 @@ msgstr "Artikli Materijalnog Naloga Sirovina" msgid "Items not found." msgstr "Artikli nisu pronađeni." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:618 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:631 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" -msgstr "Cijena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja izabrana za sljedeće artikle: {0}" +msgstr "Cjena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja izabrana za sljedeće artikle: {0}" #. Label of the items_to_be_repost (Code) field in DocType 'Repost Item #. Valuation' @@ -28343,7 +28418,7 @@ msgstr "Cijena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednov msgid "Items to Be Repost" msgstr "Artikli koje treba ponovo objaviti" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:217 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Artikli za Proizvodnju potrebni za povlačenje sirovina povezanih s njima." @@ -28444,7 +28519,7 @@ msgstr "Radni Nalog je na čekanju" #. Name of a DocType #: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json msgid "Job Card Operation" -msgstr "Operacija Radne Kartice" +msgstr "Radnji Radne Kartice" #. Name of a DocType #: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json @@ -28456,7 +28531,7 @@ msgstr "Zakazano Vrijeme Radne Kartice" msgid "Job Card Secondary Item" msgstr "Sekundarni Artikal Radne Kartice" -#: erpnext/public/js/shop_floor/shop_floor.js:1032 +#: erpnext/public/js/shop_floor/shop_floor.js:1068 msgid "Job Card Submitted" msgstr "Radna Kartica Podnešena" @@ -28484,26 +28559,26 @@ msgstr "Radne Kartice i Planiranje Kapaciteta" msgid "Job Card {0} has been completed" msgstr "Radne Kartice {0} je završen" -#: erpnext/public/js/shop_floor/shop_floor.js:1435 +#: erpnext/public/js/shop_floor/shop_floor.js:1470 msgid "Job Card {0} is already running. Open its machine or work order to pause or complete it." msgstr "Radna Kartica {0} je već pokrenuta. Otvorite njenu mašinu ili radni nalog da biste je pauzirali ili dovršili." -#: erpnext/public/js/shop_floor/shop_floor.js:1430 -#: erpnext/public/js/shop_floor/shop_floor.js:1451 +#: erpnext/public/js/shop_floor/shop_floor.js:1465 +#: erpnext/public/js/shop_floor/shop_floor.js:1486 msgid "Job Card {0} is already submitted." msgstr "Radna Kartica {0} je već podnešena." -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:186 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:188 msgid "Job Card {0} not found" msgstr "Radna Kartica {0} nije pronađena" -#: erpnext/public/js/shop_floor/shop_floor.js:1426 +#: erpnext/public/js/shop_floor/shop_floor.js:1461 msgid "Job Card {0} was not found." msgstr "Radna Kartica {0} nije pronađena." #: erpnext/manufacturing/doctype/job_card/job_card.py:1422 msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." -msgstr "Radna Kartica {0}: Prema redoslijedu operacija u radnom nalogu {1}, dovršite operaciju {2} prije operacije {3}." +msgstr "Radna Kartica {0}: Prema redoslijedu radnja u radnom nalogu {1}, dovršite radnju {2} prije radnje {3}." #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" @@ -28569,9 +28644,9 @@ msgstr "Skladište Podizvođača" #: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" -msgstr "Radna Kartica {0} kreirana" +msgstr "Radna Kartica {0} izrađena" -#: erpnext/public/js/shop_floor/shop_floor.js:1039 +#: erpnext/public/js/shop_floor/shop_floor.js:1075 msgid "Job card {0} has been submitted." msgstr "Radna Kartica {0} je podnešena." @@ -28583,7 +28658,7 @@ msgstr "Posao pauziran" msgid "Job started" msgstr "Posao započet" -#: erpnext/public/js/shop_floor/shop_floor.js:1474 +#: erpnext/public/js/shop_floor/shop_floor.js:1509 msgid "Job {0} is running" msgstr "Radnja {0} se izvršava" @@ -28606,11 +28681,11 @@ msgstr "Joule" msgid "Joule/Meter" msgstr "Džul/Metar" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:30 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:31 msgid "Journal Entries" msgstr "Nalozi Knjiženja" -#: erpnext/accounts/utils.py:1073 +#: erpnext/accounts/utils.py:1074 msgid "Journal Entries {0} are un-linked" msgstr "Nalozi Knjiženja {0} nisu povezani" @@ -28634,8 +28709,8 @@ msgstr "Nalozi Knjiženja {0} nisu povezani" #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html:10 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/assets/doctype/asset/asset.js:390 -#: erpnext/assets/doctype/asset/asset.js:399 +#: erpnext/assets/doctype/asset/asset.js:398 +#: erpnext/assets/doctype/asset/asset.js:407 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json @@ -28652,24 +28727,22 @@ msgstr "Račun Naloga Knjiženja" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Journal Entry Template" -msgstr "Račiuni Šablona Naloga Knjiženja" +msgstr "Račiuni Predloška Naloga Knjiženja" #. Name of a DocType #: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json msgid "Journal Entry Template Account" -msgstr "Račun Šablona Unosa Naloga Knjiženja" +msgstr "Račun Predloška Unosa Naloga Knjiženja" #. Label of the voucher_type (Select) field in DocType 'Journal Entry Template' #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json msgid "Journal Entry Type" msgstr "Tip Naloga Knjiženja" -#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:190 +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:191 msgid "Journal Entry for Asset scrapping cannot be cancelled. Please restore the Asset." msgstr "Naloga Knjiženja za rashod Imovine ne može se otkazati. Vrati Imovinu." @@ -28688,11 +28761,11 @@ msgstr "Nalog Knjiženja {0} nema račun {1} ili nije usklađen naspram drugog v #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:395 msgid "Journal Template Accounts" -msgstr "Račun Šablona Unosa Naloga Knjiženja" +msgstr "Račun Predloška Unosa Naloga Knjiženja" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:97 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:107 msgid "Journal entries have been created" -msgstr "Nalozi Knjiženja su kreirani" +msgstr "Nalozi Knjiženja su izrađeni" #. Label of the journals_section (Section Break) field in DocType 'Accounts #. Settings' @@ -28845,7 +28918,7 @@ msgstr "Obračunata Vrijednost" msgid "Landed Cost Help" msgstr "Pomoć Troškova Koštanja" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:18 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:20 msgid "Landed Cost Id" msgstr "ID Obračunate Vrijednosti" @@ -28932,9 +29005,9 @@ msgstr "Poslednji Datum Završetka" msgid "Last Fiscal Year" msgstr "Prošla Fiskalna Godina" -#: erpnext/accounts/doctype/account/account.py:673 +#: erpnext/accounts/doctype/account/account.py:680 msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Posljednje ažuriranje Knjigovodstvenog Registra je obavljeno {0}. Ova operacija nije dozvoljena dok se sistem aktivno koristi. Pričekaj 5 minuta prije ponovnog pokušaja." +msgstr "Posljednje ažuriranje Knjigovodstvenog Registra je obavljeno {0}. Ova radnja nije dozvoljena dok se sistem aktivno koristi. Pričekaj 5 minuta prije ponovnog pokušaja." #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28967,7 +29040,7 @@ msgstr "Datum Posljednjeg Naloga" #: erpnext/stock/doctype/item/item.json #: erpnext/stock/report/item_prices/item_prices.py:56 msgid "Last Purchase Rate" -msgstr "Posljednja Nabavna Cijena" +msgstr "Posljednja Nabavna Cjena" #. Label of the last_scanned_warehouse (Data) field in DocType 'POS Invoice' #. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase @@ -29186,7 +29259,7 @@ msgstr "Saznajte više o {0}." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:156 msgid "Missing email template for dispatch. Please set one in Delivery Settings." -msgstr "Nedostaje šablon e-pošte za otpremu. Molimo postavite jedan u Postavkama Dostave." +msgstr "Nedostaje predložak e-pošte za otpremu. Postavi jedan u Postavkama Dostave." #: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Nedostaje obavezni filter: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:920 -#: erpnext/manufacturing/doctype/work_order/work_order.py:930 +#: erpnext/manufacturing/doctype/work_order/work_order.py:936 msgid "Missing value" msgstr "Nedostaje vrijednost" @@ -31703,7 +31765,7 @@ msgstr "Nedostaje vrijednost" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json msgid "Mixed Conditions" -msgstr "Mješani Uvjeti" +msgstr "Mješani Uslovi" #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:216 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:248 @@ -31734,7 +31796,6 @@ msgstr "Način Plaćanja" #. Label of the mode_of_payment (Link) field in DocType 'Purchase Invoice' #. Label of the mode_of_payment (Link) field in DocType 'Sales Invoice Payment' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:234 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:433 #: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json @@ -31761,7 +31822,6 @@ msgstr "Način Plaćanja" #: erpnext/accounts/report/sales_register/sales_register.js:40 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/selling/page/point_of_sale/pos_controller.js:33 -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Mode of Payment" msgstr "Način Plaćanja" @@ -31840,12 +31900,12 @@ msgstr "Mjesečna Raspodjela" #. Name of a DocType #: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json msgid "Monthly Distribution Percentage" -msgstr "Mjesečna Raspodjela u Procentima" +msgstr "Mjesečna Raspodjela u Postotcima" #. Label of the percentages (Table) field in DocType 'Monthly Distribution' #: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json msgid "Monthly Distribution Percentages" -msgstr "Procentalna Mjesečna Raspodjela" +msgstr "Postotna Mjesečna Raspodjela" #: erpnext/manufacturing/dashboard_fixtures.py:244 msgid "Monthly Quality Inspections" @@ -31855,7 +31915,7 @@ msgstr "Mjesečne Inspekcije Kvaliteta" #. 'Subscription Plan' #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json msgid "Monthly Rate" -msgstr "Mjesečna Cijena" +msgstr "Mjesečna Cjena" #. Label of the monthly_sales_target (Currency) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json @@ -31882,7 +31942,7 @@ msgstr "Duže/Kraće od 12 mjeseci." #. field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Most Customers have a unique Tax ID that is fetched into selling transactions. Enable this setting if you do not want Customer Tax IDs to appear in sales transactions." -msgstr "Većina klijenata ima jedinstveni porezni broj koji se koristi u prodajnim transakcijama. Omogućite ovu postavku ako ne želite da se porezni brojevi klijenata pojavljuju u prodajnim transakcijama." +msgstr "Većina klijenata ima jedinstveni porezni broj koji se koristi u prodajnim transakcijama. Omogući ovu postavku ako ne želite da se porezni brojevi klijenata pojavljuju u prodajnim transakcijama." #: erpnext/setup/setup_wizard/data/industry_type.txt:32 msgid "Motion Picture & Video" @@ -31896,9 +31956,9 @@ msgstr "Premjesti Artikal" msgid "Move Stock" msgstr "Premjesti Zalihe" -#: erpnext/public/js/shop_floor/shop_floor.js:1373 +#: erpnext/public/js/shop_floor/shop_floor.js:1408 msgid "Move selection" -msgstr "Pomakni odabir" +msgstr "Premjesti odabir" #: erpnext/templates/includes/macros.html:169 msgid "Move to Cart" @@ -31945,9 +32005,9 @@ msgstr "Više Računa" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:284 msgid "Multiple Accounts (Journal Template)" -msgstr "Više Računa (Šablon Naloga Knjiženja)" +msgstr "Više Računa (Predložak Naloga Knjiženja)" -#: erpnext/selling/doctype/customer/customer.py:443 +#: erpnext/selling/doctype/customer/customer.py:460 msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "Višestruki Programi Lojalnosti su pronađeni za Klijenta {0}. Odaberi ručno." @@ -31957,7 +32017,7 @@ msgstr "Višestruki Unos Otvaranja Kase" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Postoji više pravila za cijene s istim kriterijima, riješi sukob dodjeljivanjem prioriteta. Pravila Cijena: {0}" +msgstr "Postoji više pravila za cjene s istim kriterijima, riješi sukob dodjeljivanjem prioriteta. Pravila Cjena: {0}" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31965,19 +32025,19 @@ msgstr "Postoji više pravila za cijene s istim kriterijima, riješi sukob dodje msgid "Multiple Tier Program" msgstr "Višeslojni Program" -#: erpnext/stock/doctype/item/item.js:259 +#: erpnext/stock/doctype/item/item.js:274 msgid "Multiple Variants" msgstr "Više Varijanti" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:244 msgid "Multiple company fields available: {0}. Please select manually." -msgstr "Dostupno je više polja poduzeća: {0}. Molimo odaberite ručno." +msgstr "Dostupno je više polja poduzeća: {0}. Odaberi ručno." #: erpnext/accounts/services/base_gl_composer.py:33 msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" -msgstr "Za datum {0} postoji više fiskalnih godina. Molimo postavite poduzeće u Fiskalnoj Godini" +msgstr "Za datum {0} postoji više fiskalnih godina. Postavi poduzeće u Fiskalnoj Godini" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:904 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:917 msgid "Multiple items cannot be marked as finished item" msgstr "Više artikala se ne mogu označiti kao gotov proizvod" @@ -31986,7 +32046,7 @@ msgid "Music" msgstr "Muzika" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:877 +#: erpnext/manufacturing/doctype/work_order/work_order.py:883 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 #: erpnext/utilities/transaction_base.py:627 @@ -32013,7 +32073,7 @@ msgstr "N/A" #. Person' #: erpnext/setup/doctype/sales_person/sales_person.json msgid "Name and Employee ID" -msgstr "Ime i Personalni ID" +msgstr "Ime i ID Osoblja" #. Label of the name_of_beneficiary (Data) field in DocType 'Bank Guarantee' #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json @@ -32022,7 +32082,7 @@ msgstr "Naziv Primatelja" #: erpnext/accounts/doctype/account/account_tree.js:121 msgid "Name of new Account. Note: Please don't create accounts for Customers and Suppliers" -msgstr "Naziv novog Računa. Napomena: Nemojte kreirati naloge za Klijente i Dobavljače" +msgstr "Naziv novog Računa. Napomena: Nemojte izraditi naloge za Klijente i Dobavljače" #. Description of the 'Distribution Name' (Data) field in DocType 'Monthly #. Distribution' @@ -32056,7 +32116,7 @@ msgstr "Mjesto" msgid "Naming Series Prefix" msgstr "Prefiks Serije Imenovanja" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:95 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:96 msgid "Naming Series is mandatory" msgstr "Serija Imenovanja je obavezna" @@ -32128,8 +32188,8 @@ msgstr "Negativna Količina nije dozvoljena" msgid "Negative Stock" msgstr "Negativna Zaliha" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1656 -#: erpnext/stock/serial_batch_bundle.py:1588 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1657 +#: erpnext/stock/serial_batch_bundle.py:1594 msgid "Negative Stock Error" msgstr "Greška Negativne Zalihe" @@ -32216,40 +32276,40 @@ msgstr "Neto Iznos (Valuta Poduzeća)" msgid "Net Asset value as on" msgstr "Neto Vrijednost Imovine kao na" -#: erpnext/accounts/report/cash_flow/cash_flow.py:186 +#: erpnext/accounts/report/cash_flow/cash_flow.py:202 msgid "Net Cash from Financing" msgstr "Neto Gotovina od Finansiranja" -#: erpnext/accounts/report/cash_flow/cash_flow.py:179 +#: erpnext/accounts/report/cash_flow/cash_flow.py:195 msgid "Net Cash from Investing" msgstr "Neto Gotovina od Ulaganja" -#: erpnext/accounts/report/cash_flow/cash_flow.py:167 +#: erpnext/accounts/report/cash_flow/cash_flow.py:183 msgid "Net Cash from Operations" msgstr "Neto Gotovina od Poslovanja" -#: erpnext/accounts/report/cash_flow/cash_flow.py:172 +#: erpnext/accounts/report/cash_flow/cash_flow.py:188 msgid "Net Change in Accounts Payable" msgstr "Neto Promjena u Obavezama" -#: erpnext/accounts/report/cash_flow/cash_flow.py:171 +#: erpnext/accounts/report/cash_flow/cash_flow.py:187 msgid "Net Change in Accounts Receivable" msgstr "Neto Promjena na Potraživanju" -#: erpnext/accounts/report/cash_flow/cash_flow.py:138 -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:257 +#: erpnext/accounts/report/cash_flow/cash_flow.py:146 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:265 msgid "Net Change in Cash" msgstr "Neto Promjena u Gotovini" -#: erpnext/accounts/report/cash_flow/cash_flow.py:188 +#: erpnext/accounts/report/cash_flow/cash_flow.py:204 msgid "Net Change in Equity" msgstr "Neto Promjena u Kapitala" -#: erpnext/accounts/report/cash_flow/cash_flow.py:181 +#: erpnext/accounts/report/cash_flow/cash_flow.py:197 msgid "Net Change in Fixed Asset" msgstr "Neto Promjena u Fiksnoj Imovini" -#: erpnext/accounts/report/cash_flow/cash_flow.py:173 +#: erpnext/accounts/report/cash_flow/cash_flow.py:189 msgid "Net Change in Inventory" msgstr "Neto Promjena u Zalihama" @@ -32262,7 +32322,7 @@ msgstr "Neto Satnica" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:135 msgid "Net Profit" msgstr "Neto Profit" @@ -32270,7 +32330,7 @@ msgstr "Neto Profit" msgid "Net Profit Ratio" msgstr "Koeficijent Neto Dobiti" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:208 msgid "Net Profit/Loss" msgstr "Neto Rezultat" @@ -32315,7 +32375,7 @@ msgstr "Neto Nabavni Iznos {0} ne može se amortizirati tokom {1} ciklusa." #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Net Rate" -msgstr "Neto Cijena" +msgstr "Neto Cjena" #. Label of the base_net_rate (Currency) field in DocType 'POS Invoice Item' #. Label of the base_net_rate (Currency) field in DocType 'Purchase Invoice @@ -32339,7 +32399,7 @@ msgstr "Neto Cijena" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Net Rate (Company Currency)" -msgstr "Neto Cijena (Valuta Poduzeća)" +msgstr "Neto Cjena (Valuta Poduzeća)" #. Label of the net_total (Currency) field in DocType 'POS Closing Entry' #. Label of the net_total (Currency) field in DocType 'POS Invoice' @@ -32454,10 +32514,6 @@ msgstr "Novi Naziv Računa" msgid "New Asset Value" msgstr "Nova Vrrijednost Imovine" -#: erpnext/assets/dashboard_fixtures.py:169 -msgid "New Assets (This Year)" -msgstr "Nova Imovina (Ove Godine)" - #. Label of the new_bom (Link) field in DocType 'BOM Update Log' #. Label of the new_bom (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom/bom_tree.js:62 @@ -32576,6 +32632,12 @@ msgstr "Novo Pravilo" msgid "New Sales Invoice" msgstr "Nova Prodajna Faktura" +#. Description of the 'Overdue Billing Threshold' (Currency) field in DocType +#. 'Customer Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "New Sales Invoices are blocked when the customer's overdue amount exceeds this. Requires 'Enable Overdue Billing Threshold' in Accounts Settings." +msgstr "" + #. Label of the sales_order (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid "New Sales Orders" @@ -32606,9 +32668,9 @@ msgstr "Nov Naziv Skladišta" #. Label of the new_workplace (Data) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "New Workplace" -msgstr "Novi Radni Prostor" +msgstr "Novo Radno Mjesto" -#: erpnext/selling/doctype/customer/customer.py:408 +#: erpnext/selling/doctype/customer/customer.py:425 msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kreditno ograničenje mora biti najmanje {0}" @@ -32616,7 +32678,7 @@ msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kredit #. DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" -msgstr "Nove fakture će se generirati prema rasporedu čak i ako su trenutne fakture neplaćene ili sa isteklim rokom dospijeća" +msgstr "Nove fakture će se izraditi prema rasporedu čak i ako su trenutne fakture neplaćene ili sa isteklim rokom dospijeća" #: erpnext/support/doctype/issue/issue.js:126 msgid "New issue created: {0}" @@ -32628,7 +32690,7 @@ msgstr "Novi datum izlaska bi trebao biti u budućnosti" #: erpnext/accounts/doctype/budget/budget.js:92 msgid "New revised budget created successfully" -msgstr "Novi revidirani proračun uspješno kreiran" +msgstr "Novi revidirani proračun uspješno izrađen" #: erpnext/templates/pages/projects.html:37 msgid "New task" @@ -32636,7 +32698,7 @@ msgstr "Novi Zadatak" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" -msgstr "Nova {0} pravila određivanja cijena su kreirana" +msgstr "Nova {0} pravila određivanja cjena su izrađena" #. Label of a Link in the CRM Workspace #: erpnext/crm/workspace/crm/crm.json @@ -32695,7 +32757,7 @@ msgstr "Bez Akcije" msgid "No Answer" msgstr "Bez Odgovora" -#: erpnext/stock/doctype/item/item.js:920 +#: erpnext/stock/doctype/item/item.js:941 msgid "No Company Found" msgstr "Nije pronađena nijedno poduzeće" @@ -32703,7 +32765,7 @@ msgstr "Nije pronađena nijedno poduzeće" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Nije pronađen Klijent za Transakcije Inter Poduzeća koji predstavlja {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:435 msgid "No Customers found with selected options." msgstr "Nisu pronađeni Klijenti sa odabranim opcijama." @@ -32719,11 +32781,11 @@ msgstr "Nema DocTypes na listi za brisanje. Molimo vas da generišete ili uvezet msgid "No Impact on Accounting Ledger" msgstr "Nema utjecaja na Knjigovodstveni Registar" -#: erpnext/stock/get_item_details.py:338 +#: erpnext/stock/get_item_details.py:337 msgid "No Item with Barcode {0}" msgstr "Nema Artikla sa Barkodom {0}" -#: erpnext/stock/get_item_details.py:342 +#: erpnext/stock/get_item_details.py:341 msgid "No Item with Serial No {0}" msgstr "Nema Artikla sa Serijskim Brojem {0}" @@ -32757,12 +32819,12 @@ msgstr "Nisu pronađene neplaćene fakture za ovu stranku" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:673 msgid "No POS Profile found. Please create a New POS Profile first" -msgstr "Nije pronađen Kasa profil. Kreiraj novi Kasa Profil" +msgstr "Nije pronađen Kasa profil. Izradi novi Kasa Profil" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1124 #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1200 #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1221 -#: erpnext/stock/doctype/item/item.py:1525 +#: erpnext/stock/doctype/item/item.py:1530 msgid "No Permission" msgstr "Bez Dozvole" @@ -32770,11 +32832,11 @@ msgstr "Bez Dozvole" msgid "No Purchase Invoices selected" msgstr "Nije odabrana nijedna Faktura Nabave" -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:102 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:116 msgid "No Purchase Orders were created" -msgstr "Nabavni Nalozi nisu kreirani" +msgstr "Nabavni Nalozi nisu izrađeni" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:242 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:244 msgid "No Quality Inspection Template is configured for this operation." msgstr "Za ovu radnju nije konfiguriran nijedan predložak za kontrolu kvalitete." @@ -32786,9 +32848,9 @@ msgstr "Bez Odabira" msgid "No Serial / Batches are available for return" msgstr "Nema Serijskih Brojeva / Šarži dostupnih za povrat" -#: erpnext/stock/stock_ledger.py:928 +#: erpnext/stock/stock_ledger.py:976 msgid "No Standard Valuation Rate found for Item {0} in Company {1} as on {2}. Please create an Item Standard Cost record." -msgstr "Nije pronađena Standardna Stopa Vrednovanja za artikal {0} u {1} na dan {2}. Izradi zapis Standardnih Troškova artikla." +msgstr "Nije pronađena Standard Stopa Vrednovanja za artikal {0} u {1} na dan {2}. Izradi zapis Standardnih Troškova artikla." #: erpnext/stock/dashboard/item_dashboard.js:154 msgid "No Stock Available Currently" @@ -32814,7 +32876,7 @@ msgstr "Nisu pronađeni podaci o PDV-u po odbitku za trenutni datum knjiženja." msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}." msgstr "Nije postavljen račun Odbitka PDV-a za {0} u Kategoriji Odbitka PDV-a {1}." -#: erpnext/accounts/report/gross_profit/gross_profit.py:1005 +#: erpnext/accounts/report/gross_profit/gross_profit.py:1007 msgid "No Terms" msgstr "Nema Uslova" @@ -32826,16 +32888,16 @@ msgstr "Nisu pronađene neusaglašene fakture i plaćanja za ovu stranku i raču msgid "No Unreconciled Payments found for this party" msgstr "Nisu pronađene neusaglašene uplate za ovu stranku" -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:100 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:114 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:250 msgid "No Work Orders were created" -msgstr "Radni Nalozi nisu kreirani" +msgstr "Radni Nalozi nisu izrađeni" #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py:296 msgid "No account set" msgstr "Nije postavljen račun" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:356 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:365 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:211 msgid "No accounting entries for the following warehouses" msgstr "Nema knjigovodstvenih unosa za sljedeća skladišta" @@ -32854,9 +32916,9 @@ msgstr "Nije pronađena aktivna Sastavnica za artikal {0}. Ne može se osigurati #: erpnext/stock/doctype/item/item_prices.html:135 msgid "No active item prices found." -msgstr "Nisu pronađene aktivne cijene artikala." +msgstr "Nisu pronađene aktivne cjene artikala." -#: erpnext/public/js/templates/shop_floor_template.html:849 +#: erpnext/public/js/templates/shop_floor_template.html:869 msgid "No active jobs and the queue is empty." msgstr "Nema aktivnih radnji i red čekanja je prazan." @@ -32864,7 +32926,7 @@ msgstr "Nema aktivnih radnji i red čekanja je prazan." msgid "No additional fields available" msgstr "Nema dostupnih dodatnih polja" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1381 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1391 msgid "No available quantity to reserve for item {0} in warehouse {1}" msgstr "Nema raspoložive količine za rezervaciju artikla {0} u skladištu {1}" @@ -32880,7 +32942,7 @@ msgstr "Još nema uvezenih bankovnih izvoda" msgid "No bank transactions found" msgstr "Nisu pronađene bankovne transakcije" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:502 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:501 msgid "No billing email found for customer: {0}" msgstr "Nije pronađena e-pošta fakture za: {0}" @@ -32904,7 +32966,7 @@ msgstr "Nema podataka za ovaj period" msgid "No data found. Seems like you uploaded a blank file" msgstr "Nema podataka. Čini se da ste otpremili praznu datoteku" -#: erpnext/stock/doctype/item/item.js:950 +#: erpnext/stock/doctype/item/item.js:971 msgid "No default warehouse set for this company. Entry will use Stock Settings default." msgstr "Nije postavljeno stabdard skladište za ovo poduzeće. Unos će koristiti standard postavke zaliha." @@ -32922,7 +32984,7 @@ msgstr "Nije pronađena e-pošta za {0} {1}" #: erpnext/telephony/doctype/call_log/call_log.py:119 msgid "No employee was scheduled for call popup" -msgstr "Personal nije zakazao poziv" +msgstr "Osoblje nije zakazalo poziv" #: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:235 #: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:225 @@ -32945,12 +33007,12 @@ msgstr "Nije povezana faktura" msgid "No item available for transfer." msgstr "Nema dostupnih artikala za prijenos." -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:174 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:197 msgid "No items are available in sales orders {0} for production" msgstr "Nema dostupnih artikala u Prodajnim Nalozima {0} za proizvodnju" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:171 -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:183 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:194 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:206 msgid "No items are available in the sales order {0} for production" msgstr "Nema dostupnih artikala u Prodajnom Nalogu {0} za proizvodnju" @@ -32966,9 +33028,9 @@ msgstr "Nema artikala u korpi" msgid "No matches occurred via auto reconciliation" msgstr "Nije došlo do usaglašavanja putem automatskog usaglašavanja" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:126 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:133 msgid "No material request created" -msgstr "Nije kreiran Materijalni Nalog" +msgstr "Nije izrađen Materijalni Nalog" #: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:199 msgid "No more children on Left" @@ -32993,7 +33055,7 @@ msgstr "Broj Dokumenata" #: erpnext/crm/doctype/lead/lead.json #: erpnext/crm/doctype/opportunity/opportunity.json msgid "No of Employees" -msgstr "Personalni Broj" +msgstr "Broj Osoblja" #: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:62 msgid "No of Interactions" @@ -33066,7 +33128,7 @@ msgstr "Nema Otvorenih Događaja" msgid "No open task" msgstr "Nema Otvorenog Zadatka" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:335 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:360 msgid "No outstanding invoices found" msgstr "Nisu pronađene nepodmirene fakture" @@ -33074,7 +33136,7 @@ msgstr "Nisu pronađene nepodmirene fakture" msgid "No outstanding invoices found for the selected vouchers in account {0}" msgstr "Nisu pronađene neplaćene fakture za odabrane verifikate na računu {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:333 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:358 msgid "No outstanding invoices require exchange rate revaluation" msgstr "Nijedna neplaćena faktura ne zahtijeva revalorizaciju kursa" @@ -33090,7 +33152,7 @@ msgstr "Za ovu stranicu nije dostupna slika." msgid "No pending Material Requests found to link for the given items." msgstr "Nisu pronađeni Materijalni Nalozi na čekanju za povezivanje za date artikle." -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:509 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:508 msgid "No primary email found for customer: {0}" msgstr "Nije pronađena primarna e-pošta: {0}" @@ -33121,15 +33183,15 @@ msgstr "Nije pronađen nijedan zapis" msgid "No records for these settings." msgstr "Nema zapisa za ove postavke." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:776 msgid "No records found in Allocation table" msgstr "Nema zapisa u tabeli Dodjele" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Invoices table" msgstr "Nije pronađen zapis u tabeli Fakture" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:656 msgid "No records found in the Payments table" msgstr "Nije pronađen zapis u tabeli Plaćanja" @@ -33160,13 +33222,13 @@ msgstr "Nema dostupnih zaliha za ovu šaržu." #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:941 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." -msgstr "Nisu kreirani unosi u glavnu knjigu zaliha. Molimo Vas da ispravno postavite količinu ili stopu vrednovanja za artikle i pokušate ponovno." +msgstr "Nisu izrađeni unosi u glavnu knjigu zaliha. Molimo Vas da ispravno postavi količinu ili stopu vrednovanja za artikle i pokušate ponovno." #. Description of the 'Stock frozen up to' (Date) field in DocType 'Stock #. Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "No stock transactions can be created or modified before this date." -msgstr "Nikakve transakcije Zalihama se ne mogu kreirati ili mijenjati prije ovog datuma." +msgstr "Nikakve transakcije Zalihama se ne mogu izraditi ili mijenjati prije ovog datuma." #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:165 msgid "No tables were extracted from this PDF." @@ -33195,11 +33257,11 @@ msgstr "Bez Vrijednosti" msgid "No vouchers found for this transaction" msgstr "Nisu pronađeni verifikati za ovu transakciju" -#: erpnext/stock/doctype/item/item.py:1782 +#: erpnext/stock/doctype/item/item.py:1787 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "Nije pronađeno skladište za {0}. Postavi standard skladište u Postavkama Artikala ili Postavkama Zaliha." -#: erpnext/public/js/shop_floor/shop_floor.js:301 +#: erpnext/public/js/shop_floor/shop_floor.js:329 msgid "No work orders here." msgstr "Ovdje nema radnih naloga." @@ -33210,7 +33272,7 @@ msgstr "Nije pronađen {0} za transakcije među poduzećima." #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" -msgstr "Personalni Broj" +msgstr "Broj Osoblja" #: erpnext/manufacturing/doctype/workstation/workstation.js:63 msgid "No. of parallel job cards which can be allowed on this workstation. Example: 2 would mean this workstation can process production for two Work Orders at a time." @@ -33256,7 +33318,7 @@ msgstr "Ne Nule" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:117 #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:113 msgid "Non-phantom BOM cannot be created for non-stock item {0}." -msgstr "Ne može se kreirati Šarža koja nije fantomska za artikal koja nije na zalihi {0}." +msgstr "Ne može se izraditi Šarža koja nije viritualna za artikal koja nije na zalihi {0}." #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685 msgid "None of the items have any change in quantity or value." @@ -33344,13 +33406,20 @@ msgstr "Nije Navedeno" msgid "Not Started" msgstr "Nije Započeto" -#: erpnext/accounts/report/cash_flow/cash_flow.py:431 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:269 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/report/cash_flow/cash_flow.py:161 +msgid "Not Supported" +msgstr "Nije Podržano" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:479 msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Nije moguće pronaći najraniju Fiskalnu Godinu za dato poduzeće." #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" -msgstr "Nije dozvoljeno kreiranje knjigovodstvene dimenzije za {0}" +msgstr "Nije dozvoljeno izradu knjigovodstvene dimenzije za {0}" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:277 msgid "Not allowed to update stock transactions older than {0}" @@ -33362,7 +33431,7 @@ msgstr "Nije ovlašteno jer {0} premašuje ograničenja" #: erpnext/accounts/doctype/gl_entry/gl_entry.py:437 msgid "Not authorized to edit frozen Account {0}" -msgstr "Nije ovlašten za uređivanje zamrznutog računa {0}" +msgstr "Nije ovlašten za uređivanje zatvorenog računa {0}" #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" @@ -33384,7 +33453,7 @@ msgstr "Nije dozvoljeno čitanje Radnog Naloga" msgid "Note: Automatic log deletion only applies to logs of type Update Cost" msgstr "Napomena: Automatsko brisanje zapisa primjenjuje se samo na zapise tipa Ažuriraj Trošak" -#: erpnext/accounts/party.py:714 +#: erpnext/accounts/party.py:730 msgid "Note: Due Date exceeds allowed {0} credit days by {1} day(s)" msgstr "Napomena: Datum dospijeća premašuje dozvoljenih {0} kreditnih dana za {1} dan/dana" @@ -33396,23 +33465,23 @@ msgstr "Napomena: E-pošta se neće slati onemogućenim korisnicima" #: erpnext/manufacturing/doctype/bom/bom.py:769 msgid "Note: If you want to use the finished good {0} as a raw material, then enable the 'Do Not Explode' checkbox in the Items table against the same raw material." -msgstr "Napomena: Ako želite koristiti gotov proizvod {0} kao sirovinu, označite polje za potvrdu 'Ne Proširuj' u Postavkama Artikla za istu sirovinu." +msgstr "Napomena: Ako želite koristiti gotov proizvod {0} kao sirovinu, odaberi polje za potvrdu 'Ne Proširuj' u Postavkama Artikla za istu sirovinu." #: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:94 msgid "Note: Item {0} added multiple times" msgstr "Napomena: Artikal {0} je dodan više puta" -#: erpnext/controllers/accounts_controller.py:622 +#: erpnext/controllers/accounts_controller.py:549 msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified" -msgstr "Napomena: Unos plaćanja neće biti kreiran jer 'Gotovina ili Bankovni Račun' nije naveden" +msgstr "Napomena: Unos plaćanja neće biti izrađen jer 'Gotovina ili Bankovni Račun' nije naveden" #: erpnext/accounts/doctype/cost_center/cost_center.js:30 msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups." msgstr "Napomena: Ovaj Centar Troškova je Grupa. Ne mogu se izvršiti knjigovodstveni unosi naspram grupa." -#: erpnext/stock/doctype/item/item.py:686 +#: erpnext/stock/doctype/item/item.py:691 msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}" -msgstr "Napomena: Da biste spojili artikle, kreirajte zasebno Usaglašavanje Zaliha za stari artikal {0}" +msgstr "Napomena: Da biste spojili artikle, izradi zasebno Usaglašavanje Zaliha za stari artikal {0}" #. Label of the notes (Small Text) field in DocType 'Asset Depreciation #. Schedule' @@ -33477,7 +33546,7 @@ msgstr "Obavijesti klijente putem e-pošte" #: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json #: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json msgid "Notify Employee" -msgstr "Obavijesti Personal" +msgstr "Obavijesti Osoblje" #. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard #. Standing' @@ -33511,7 +33580,7 @@ msgstr "Obavijesti putem e-pošte" #. Label of the reorder_email_notify (Check) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Notify by email on creation of automatic Material Request" -msgstr "Obavijesti putem e-pošte o kreiranju automatskog Materijalnog Naloga" +msgstr "Obavijesti putem e-pošte o izradi automatskog Materijalnog Naloga" #. Description of the 'Notify Via Email' (Check) field in DocType 'Appointment #. Booking Settings' @@ -33566,7 +33635,7 @@ msgstr "Broj dana termini se mogu rezervirati unaprijed" #. Description of the 'Days Until Due' (Int) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Number of days that the subscriber has to pay invoices generated by this subscription" -msgstr "Broj dana u kojima pretplatnik mora platiti fakture generirane ovom pretplatom" +msgstr "Broj dana u kojima pretplatnik mora platiti fakture izrađene ovom pretplatom" #. Description of the 'Match transfers within 'N' days' (Int) field in DocType #. 'Accounts Settings' @@ -33583,7 +33652,7 @@ msgstr "Broj dana za usklađivanje prijenosa" #. 'Subscription Plan' #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json msgid "Number of intervals for the interval field e.g if Interval is 'Days' and Billing Interval Count is 3, invoices will be generated every 3 days" -msgstr "Broj intervala za polje intervala npr. ako je Interval 'Dana' i Broj intervala naplate je 3, fakture će se generirati svaka 3 dana" +msgstr "Broj intervala za polje intervala npr. ako je Interval 'Dana' i Broj intervala naplate je 3, fakture će se izraditi svaka 3 dana" #: erpnext/accounts/doctype/account/account_tree.js:129 msgid "Number of new Account, it will be included in the account name as a prefix" @@ -33765,10 +33834,16 @@ msgstr "Na Putu" msgid "On enabling this cancellation entries will be posted on the actual cancellation date and reports will consider cancelled entries as well" msgstr "Nakon omogućavanja ovog otkazivanja, unosi će biti uknjiženi na datum stvarnog otkazivanja, a izvještaji će uzeti u obzir i otkazane unose" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:727 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:754 msgid "On expanding a row in the Items to Manufacture table, you'll see an option to 'Include Exploded Items'. Ticking this includes raw materials of the sub-assembly items in the production process." msgstr "Kada proširite red u tabeli Artikli za Proizvodnju, vidjet ćete opciju 'Uključi Rastavljenje Artikle'. Ovo označavanje uključuje sirovine za podsklopove u procesu proizvodnje." +#. Option for the 'Status' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project/project_list.js:8 +msgid "On hold" +msgstr "" + #. Description of the 'Excluded Fee' (Currency) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -33779,7 +33854,7 @@ msgstr "Prilikom spremanja, Isključena naknada će biti pretvorena u Uključenu #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "On submission of the stock transaction, system will auto create the Serial and Batch Bundle based on the Serial No / Batch fields." -msgstr "Pri podnošenju transakcije zaliha, sistem će automatski kreirati Serijski i Šaržni Paket na osnovu polja Serijskog Broja / Šarže." +msgstr "Pri podnošenju transakcije zaliha, sistem će automatski izraditi Serijski i Šaržni Paket na osnovu polja Serijskog Broja / Šarže." #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.js:39 msgid "On submission, stock transactions for Item {0} cannot be posted with a date before {1} — backdated entries will be blocked." @@ -33902,16 +33977,16 @@ msgstr "Samo jedan od Uplate ili Isplate ne treba biti nula prilikom primjene Is #: erpnext/manufacturing/doctype/bom/bom.py:362 msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled." -msgstr "Samo jedna operacija može imati odabranu opciju 'Je li Gotov Proizvod' kada je omogućeno 'Praćenje Polugotovih Proizvoda'." +msgstr "Samo jedna radnja može imati odabranu opciju 'Je li Gotov Proizvod' kada je omogućeno 'Praćenje Polugotovih Proizvoda'." #. Description of the 'Is Active' (Check) field in DocType 'Product Bundle' #: erpnext/selling/doctype/product_bundle/product_bundle.json msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "Samo jedna verzija Paketa Artikala može biti aktivna u datom trenutku za dati Nadređeni Artikal. Aktiviranje verzije deaktivira prethodno aktivnu verziju." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:737 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:750 msgid "Only one {0} entry can be created against the Work Order {1}" -msgstr "Samo jedan {0} unos se može kreirati naspram Radnog Naloga {1}" +msgstr "Samo jedan {0} unos se može izraditi naspram Radnog Naloga {1}" #. Description of the 'Customer Groups' (Table) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -33923,7 +33998,7 @@ msgstr "Prikaži samo Klijenta ovih Grupa Klijenata" msgid "Only show Items from these Item Groups" msgstr "Prikaži samo Artikle iz ovih Grupa Artikala" -#: erpnext/public/js/shop_floor/shop_floor.js:152 +#: erpnext/public/js/shop_floor/shop_floor.js:178 msgid "Only show work orders that have job cards" msgstr "Prikaži samo radne naloge koji imaju radne kartice" @@ -33991,7 +34066,7 @@ msgstr "Otvorena Pitanja" #: erpnext/setup/doctype/email_digest/templates/default.html:46 msgid "Open Issues " -msgstr "Otvoreni Slučajevi" +msgstr "Otvoreni Zahtjevi" #: erpnext/manufacturing/doctype/bom/bom_item_preview.html:28 #: erpnext/manufacturing/doctype/work_order/work_order_preview.html:28 @@ -34067,7 +34142,7 @@ msgstr "Otvorite novu kartu" msgid "Open the settings dialog" msgstr "Otvorite dijalog postavki" -#: erpnext/public/js/shop_floor/shop_floor.js:1374 +#: erpnext/public/js/shop_floor/shop_floor.js:1409 msgid "Open work order / run primary action" msgstr "Otvori radni nalog / pokreni primarnu radnju" @@ -34081,9 +34156,7 @@ msgid "Opening" msgstr "Početno" #. Group in POS Profile's connections -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_profile/pos_profile.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Opening & Closing" msgstr "Otvaranje & Zatvaranje" @@ -34167,9 +34240,9 @@ msgstr "Datum Otvaranja" msgid "Opening Entry" msgstr "Početni Unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:326 msgid "Opening Invoice Creation In Progress" -msgstr "Kreiranja Početne Fakture u toku" +msgstr "Izrada Početne Fakture u toku" #. Name of a DocType #. Label of a Link in the Invoicing Workspace @@ -34179,22 +34252,17 @@ msgstr "Kreiranja Početne Fakture u toku" #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/workspace/home/home.json msgid "Opening Invoice Creation Tool" -msgstr "Alat Kreiranja Početne Fakture" +msgstr "Alat Izrade Početne Fakture" #. Name of a DocType #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json msgid "Opening Invoice Creation Tool Item" -msgstr "Stavka Alata Kreiranja Početne Fakture" +msgstr "Stavka Alata Izrade Početne Fakture" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:106 msgid "Opening Invoice Item" msgstr "Početni Artikal Fakture" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "Opening Invoice Tool" -msgstr "Alat Početne Fakture" - #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:849 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:644 msgid "Opening Invoice has rounding adjustment of {0}.- Omogućiti uređivanje kolone cjene u svim tabelama Pakiranih/Paketnih artikala.
\n" -"- Izračunati cijene svih paketa artikala u tabeli artikala na osnovu cijena njihovih podređenih artikala navedenih u tabeli pakiranih/paketiranih artikala.
\n" +"- Izračunati cjene svih paketa artikala u tabeli artikala na osnovu cjena njihovih podređenih artikala navedenih u tabeli pakiranih/paketiranih artikala.
\n" "
'{1}' account is required to post these values. Please set it in Company: {2}.
Or, '{3}' can be enabled to not post any rounding adjustment." @@ -34204,7 +34272,7 @@ msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}.
'{1}' r msgid "Opening Invoices" msgstr "Početne Fakture" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:146 msgid "Opening Invoices Summary" msgstr "Sažetak Početnih Faktura" @@ -34217,48 +34285,48 @@ msgstr "Sažetak Početnih Faktura" msgid "Opening Number of Booked Depreciations" msgstr "Početni broj knjiženih amortizacija" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35 -msgid "Opening Purchase Invoices have been created." -msgstr "Početne Fakture Nabave su kreirane." +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:36 +msgid "Opening Purchase Invoice(s) have been created." +msgstr "Početne Nabavne Fakture su izrađene." -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 #: erpnext/stock/report/stock_balance/stock_balance.py:533 msgid "Opening Qty" msgstr "Početna Količina" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:33 -msgid "Opening Sales Invoices have been created." -msgstr "Početne Fakture Prodaje su kreirane." +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35 +msgid "Opening Sales Invoice(s) have been created." +msgstr "Početne Prodajne Fakture su izrađene." #. Label of the opening_stock (Float) field in DocType 'Item' #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' -#: erpnext/stock/doctype/item/item.js:965 erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/item/item.py:353 -#: erpnext/stock/doctype/item/item.py:1682 +#: erpnext/stock/doctype/item/item.js:986 erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item.py:358 +#: erpnext/stock/doctype/item/item.py:1687 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Početna Zaliha" -#: erpnext/stock/doctype/item/item.py:1636 +#: erpnext/stock/doctype/item/item.py:1641 msgid "Opening Stock can only be set for stock items." msgstr "Početne zalihe mogu se postaviti samo za artikle na zalihi." -#: erpnext/stock/doctype/item/item.py:1643 +#: erpnext/stock/doctype/item/item.py:1648 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." -msgstr "Početne zalihe se ne mogu kreirati jer već postoje transakcije zaliha za artikal {0}." +msgstr "Početne zalihe se ne mogu izraditi jer već postoje transakcije zaliha za artikal {0}." -#: erpnext/stock/doctype/item/item.py:1639 +#: erpnext/stock/doctype/item/item.py:1644 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "Početne zalihe za serijske ili šaržne artikle mora se postaviti putem Usklađivanje Zaliha." -#: erpnext/stock/doctype/item/item.py:358 +#: erpnext/stock/doctype/item/item.py:363 msgid "Opening Stock reconciliation created with zero valuation rate: {0}" -msgstr "Početno Usklađivanje Zaliha kreirano sa nultom stopom vrednovanja: {0}" +msgstr "Početno Usklađivanje Zaliha izrađeno sa nultom stopom vrednovanja: {0}" -#: erpnext/stock/doctype/item/item.py:366 -#: erpnext/stock/doctype/item/item.py:1685 +#: erpnext/stock/doctype/item/item.py:371 +#: erpnext/stock/doctype/item/item.py:1690 msgid "Opening Stock reconciliation created: {0}" -msgstr "Početno Usklađivanje Zaliha kreirano: {0}" +msgstr "Početno Usklađivanje Zaliha izrađeno: {0}" #. Label of the opening_time (Time) field in DocType 'Issue' #: erpnext/support/doctype/issue/issue.json @@ -34274,9 +34342,13 @@ msgstr "Početna Vrijednosti" msgid "Opening and Closing" msgstr "Otvaranje & Zatvaranje" -#: erpnext/stock/doctype/item/item.py:199 +#: erpnext/accounts/report/cash_flow/cash_flow.py:162 +msgid "Opening and Closing balance is not supported for dimension grouped cash flow statement" +msgstr "Početno i Završno stanje nisu podržani za izvještaj o novčanom toku grupiran po dimenzijama" + +#: erpnext/stock/doctype/item/item.py:203 msgid "Opening stock creation has been queued and will be created in the background. Please check the Stock Reconciliation after some time." -msgstr "Kreiranje početnih zaliha je stavljeno u red čekanja i bit će kreirano u pozadini. Molimo provjerite usklađivanje zaliha nakon nekog vremena." +msgstr "Izrada početnih zaliha je stavljeno u red čekanja i bit će izrađeno u pozadini. Provjeri usklađivanje zaliha nakon nekog vremena." #. Label of the operating_component (Link) field in DocType 'Workstation Cost' #. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes @@ -34340,7 +34412,7 @@ msgstr "Operativni troškovi (po satu)" #. Label of the production_section (Section Break) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Operation & Materials" -msgstr "Operacija & Materijali" +msgstr "Radnji & Materijali" #. Label of the section_break_22 (Section Break) field in DocType 'Work Order' #: erpnext/manufacturing/doctype/work_order/work_order.json @@ -34353,7 +34425,7 @@ msgstr "Operativni Trošak" #: erpnext/manufacturing/doctype/operation/operation.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Operation Description" -msgstr "Opis Operacije" +msgstr "Opis Radnje" #. Label of the operation_row_id (Int) field in DocType 'BOM Item' #. Label of the operation_id (Data) field in DocType 'Job Card' @@ -34364,22 +34436,22 @@ msgstr "Opis Operacije" #: erpnext/manufacturing/doctype/work_order/work_order.js:353 #: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json msgid "Operation ID" -msgstr "Operacija" +msgstr "Radnji" #. Label of the operation_row_id (Int) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Operation Row ID" -msgstr "ID Red Operacije" +msgstr "ID Red Radnje" #. Label of the operation_row_id (Int) field in DocType 'Work Order Item' #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json msgid "Operation Row Id" -msgstr "Operacija Red Id" +msgstr "Radnji Red Id" #. Label of the operation_row_number (Select) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Operation Row Number" -msgstr "Broj Reda Operacije" +msgstr "Broj Reda Radnje" #. Label of the time_in_mins (Float) field in DocType 'BOM Operation' #. Label of the time_in_mins (Float) field in DocType 'BOM Website Operation' @@ -34390,32 +34462,32 @@ msgstr "Broj Reda Operacije" msgid "Operation Time" msgstr "Operativno Vrijeme" -#: erpnext/manufacturing/doctype/work_order/work_order.py:939 +#: erpnext/manufacturing/doctype/work_order/work_order.py:945 msgid "Operation Time must be greater than 0 for Operation {0}" -msgstr "Vrijeme Operacije mora biti veće od 0 za operaciju {0}" +msgstr "Vrijeme Radnje mora biti veće od 0 za radnju {0}" #. Description of the 'Completed Qty' (Float) field in DocType 'Work Order #. Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Operation completed for how many finished goods?" -msgstr "Operacija je okončana za koliko gotove robe?" +msgstr "Za koliko gotovih proizvoda je operacija završena?" #. Description of the 'Fixed Time' (Check) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Operation time does not depend on quantity to produce" -msgstr "Vrijeme Operacije ne ovisi o količini za proizvodnju" +msgstr "Vrijeme Radnje ne ovisi o količini za proizvodnju" #: erpnext/manufacturing/doctype/job_card/job_card.js:517 msgid "Operation {0} added multiple times in the work order {1}" -msgstr "Operacija {0} dodata je više puta u radni nalog {1}" +msgstr "Radnji {0} dodata je više puta u radni nalog {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:1358 msgid "Operation {0} does not belong to the work order {1}" -msgstr "Operacija {0} ne pripada radnom nalogu {1}" +msgstr "Radnji {0} ne pripada radnom nalogu {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:384 msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operacija {0} traje duže od bilo kojeg raspoloživog radnog vremena na radnoj stanici {1}, podijeli operaciju na više operacija" +msgstr "Radnji {0} traje duže od bilo kojeg raspoloživog radnog vremena na radnoj stanici {1}, podijeli radnju na više radnja" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34427,27 +34499,27 @@ msgstr "Operacija {0} traje duže od bilo kojeg raspoloživog radnog vremena na #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/work_order/work_order.js:334 #: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/public/js/shop_floor/shop_floor.js:359 -#: erpnext/setup/doctype/company/company.py:537 +#: erpnext/public/js/shop_floor/shop_floor.js:387 +#: erpnext/setup/doctype/company/company.py:539 #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/templates/generators/bom.html:61 msgid "Operations" -msgstr "Operacije" +msgstr "Radnje" #. Label of the section_break_xvld (Section Break) field in DocType 'BOM #. Creator' #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json msgid "Operations Routing" -msgstr "Redoslijed Operacija" +msgstr "Redoslijed Radnji" #: erpnext/manufacturing/doctype/bom/bom.py:929 msgid "Operations cannot be left blank" -msgstr "Operacije se ne mogu ostaviti praznim" +msgstr "Radnje se ne mogu ostaviti praznim" #. Label of the operator (Link) field in DocType 'Downtime Entry' #: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json #: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:85 -#: erpnext/public/js/shop_floor/shop_floor.js:126 +#: erpnext/public/js/shop_floor/shop_floor.js:152 msgid "Operator" msgstr "Operater" @@ -34458,7 +34530,7 @@ msgstr "Kontrolna Tabla Operatera" #: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:22 #: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:27 msgid "Opp Count" -msgstr "Broj Operacija" +msgstr "Broj Radnji" #: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:26 #: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:31 @@ -34601,7 +34673,7 @@ msgstr "Vrijednost Prilike" #: erpnext/public/js/communication.js:102 msgid "Opportunity {0} created" -msgstr "Prilika {0} je kreirana" +msgstr "Prilika {0} je izrađena" #. Label of the optimize_route (Button) field in DocType 'Delivery Trip' #: erpnext/stock/doctype/delivery_trip/delivery_trip.json @@ -34612,7 +34684,13 @@ msgstr "Optimiziraj Rutu" msgid "Optimizing route" msgstr "Optimizacija rute" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1038 +#. Description of the 'Raw Material Group Warehouse' (Link) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Optional group warehouse. Raw material availability is checked across its child warehouses; material is still received into For Warehouse." +msgstr "Opcionalno grupno skladište. Dostupnost sirovina se provjerava u njenim podređenim skladištima; materijal se i dalje prima u skladište Za Skladište." + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1042 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "Opcionalno. Odaberi određeni unos proizvodnje za poništavanje." @@ -34626,7 +34704,7 @@ msgstr "Opcija. Ova postavka će se koristiti za filtriranje u raznim transakcij #: erpnext/accounts/doctype/account/account_tree.js:165 msgid "Optional. Used with Financial Report Template" -msgstr "Opcija. Koristi se s Šablonom Financijskog Izvještaja" +msgstr "Opcija. Koristi se s Predložakom Financijskog Izvještaja" #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" @@ -34746,7 +34824,7 @@ msgstr "Naručeno" msgid "Ordered Qty" msgstr "Naložena Količina" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:205 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:231 msgid "Ordered Qty: Quantity ordered for purchase, but not received." msgstr "Količina Naloga: Naložena Količina za nabavu, ali nije primljena." @@ -34767,14 +34845,10 @@ msgstr "Nalozi" #. Label of the organization_details_section (Section Break) field in DocType #. 'Opportunity' #. Label of a Desktop Icon -#. Name of a Workspace -#. Title of a Workspace Sidebar #: erpnext/crm/doctype/lead/lead.json #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:30 #: erpnext/desktop_icon/organization.json -#: erpnext/setup/workspace/organization/organization.json -#: erpnext/workspace_sidebar/organization.json msgid "Organization" msgstr "Poduzeće" @@ -34874,7 +34948,7 @@ msgid "Ounce/Gallon (US)" msgstr "Ounce/Gallon (US)" #: erpnext/stock/report/available_serial_no/available_serial_no.py:119 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:88 #: erpnext/stock/report/stock_balance/stock_balance.py:555 #: erpnext/stock/report/stock_ledger/stock_ledger.py:324 msgid "Out Qty" @@ -34898,7 +34972,7 @@ msgstr "Servisni Ugovor Istekao" msgid "Out of Order" msgstr "Pokvareno" -#: erpnext/stock/doctype/pick_list/pick_list.py:663 +#: erpnext/stock/doctype/pick_list/pick_list.py:672 msgid "Out of Stock" msgstr "Nema u Zalihana" @@ -34919,12 +34993,16 @@ msgstr "Nema u Zalihana" msgid "Outdated POS Opening Entry" msgstr "Zastarjeli Unos Otvaranja Kase" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Outgoing Bills" msgstr "Odlazne Fakture" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Outgoing Payment" msgstr "Odlazno Plaćanje" @@ -34935,7 +35013,7 @@ msgstr "Odlazno Plaćanje" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/stock_ledger/stock_ledger.py:378 msgid "Outgoing Rate" -msgstr "Odlazna Cijena" +msgstr "Odlazna Cjena" #. Label of the outstanding (Currency) field in DocType 'Overdue Payment' #. Label of the outstanding_amount (Currency) field in DocType 'Payment Entry @@ -34979,7 +35057,7 @@ msgstr "Nepodmireno (Valuta Tvrtke)" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/report/accounts_payable/accounts_payable.html:140 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:141 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169 #: erpnext/accounts/report/purchase_register/purchase_register.py:307 #: erpnext/accounts/report/sales_register/sales_register.py:333 @@ -35014,11 +35092,6 @@ msgstr "Nepodmireno za {0} ne može biti manje od nule ({1})" msgid "Outward" msgstr "Dostava" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Outward Order" -msgstr "Eksterni Nalog" - #. Label of the over_billing_allowance (Currency) field in DocType 'Accounts #. Settings' #. Label of the over_billing_allowance (Float) field in DocType 'Item' @@ -35101,6 +35174,16 @@ msgstr "Prekomjerno Fakturisanje {0} {1} zanemareno za artikal {2} jer imate {3} msgid "Overdue" msgstr "Kasni" +#: erpnext/selling/doctype/customer/customer.py:612 +msgid "Overdue Billing Limit Crossed" +msgstr "" + +#. Label of the overdue_billing_threshold (Currency) field in DocType 'Customer +#. Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "Overdue Billing Threshold" +msgstr "" + #. Label of the overdue_days (Data) field in DocType 'Overdue Payment' #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json msgid "Overdue Days" @@ -35130,19 +35213,19 @@ msgstr "Dospjela i Snižena" #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" -msgstr "Uvjeti koji se preklapaju pronađeni između:" +msgstr "Uslovi koji se preklapaju pronađeni između:" #. Label of the overproduction_percentage_for_sales_order (Percent) field in #. DocType 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Overproduction Percentage For Sales Order" -msgstr "Procentualna Prekomjerna Proizvodnja za Prodajni Nalog" +msgstr "Postotna Prekomjerna Proizvodnja za Prodajni Nalog" #. Label of the overproduction_percentage_for_work_order (Percent) field in #. DocType 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Overproduction Percentage For Work Order" -msgstr "Procentualna Prekomjerna Proizvodnja za Radni Nalog" +msgstr "Postotna Prekomjerna Proizvodnja za Radni Nalog" #. Label of the over_production_for_sales_and_work_order_section (Section #. Break) field in DocType 'Manufacturing Settings' @@ -35154,7 +35237,7 @@ msgstr "Prekomjerna proizvodnja za Prodaju i Radni Nalog" #. 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Override the default payable / advance accounts on a per-company basis. Leave blank to use each company's defaults from Company settings." -msgstr "Poništi zadane obaveze/predujamske račune za svako poduzeće pojedinačno. Ostavite prazno da biste koristili standard vrijednosti svakog poduzeća iz postavki poduzeća." +msgstr "Poništi standard obaveze/predujamske račune za svako poduzeće pojedinačno. Ostavite prazno da biste koristili standard vrijednosti svakog poduzeća iz postavki poduzeća." #. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee' #. Option for the 'Current Address Is' (Select) field in DocType 'Employee' @@ -35348,7 +35431,7 @@ msgstr "Korisnik {0} nije stvorio Kasa Fakturu" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." -msgstr "Kasa Faktura treba da ima označeno polje {0} ." +msgstr "Kasa Faktura treba da ima odabrano polje {0} ." #. Label of the pos_invoices (Table) field in DocType 'POS Invoice Merge Log' #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json @@ -35397,7 +35480,7 @@ msgstr "Otvaranje Kase" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:261 msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry." -msgstr "Unos Otvaranja Kase - {0} je zastario. Zatvori kasu i kreiraj novi Unos Otvaranja Kase." +msgstr "Unos Otvaranja Kase - {0} je zastario. Zatvori kasu i izradi novi Unos Otvaranja Kase." #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:121 msgid "POS Opening Entry Cancellation Error" @@ -35527,7 +35610,7 @@ msgstr "Kasa je zatvorena u {0}. Osvježi Stranicu." #: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" -msgstr "Kasa Faktura {0} je uspješno kreirana" +msgstr "Kasa Faktura {0} je uspješno izrađena" #. Name of a DocType #: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json @@ -35658,7 +35741,7 @@ msgstr "Plaćeno" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:173 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:167 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:201 #: erpnext/accounts/report/pos_register/pos_register.py:225 @@ -35782,13 +35865,13 @@ msgstr "Parametri" #. Label of the parcel_template (Link) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Parcel Template" -msgstr "Dostavni Paket Šablon" +msgstr "Dostavni Paket Predložak" #. Label of the parcel_template_name (Data) field in DocType 'Shipment Parcel #. Template' #: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json msgid "Parcel Template Name" -msgstr "Naziv Dostavnog Paketa Šablona" +msgstr "Naziv Dostavnog Paketa Predloška" #: erpnext/stock/doctype/shipment/shipment.py:97 msgid "Parcel weight cannot be 0" @@ -35804,7 +35887,7 @@ msgstr "Paket" msgid "Parent Account" msgstr "Nadređeni Račun" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:385 msgid "Parent Account Missing" msgstr "Nedostaje Nadređeni Račun" @@ -35818,7 +35901,7 @@ msgstr "Nadređena Šarža" msgid "Parent Company" msgstr "Matično Poduzeće" -#: erpnext/setup/doctype/company/company.py:672 +#: erpnext/setup/doctype/company/company.py:674 msgid "Parent Company must be a group company" msgstr "Matično Poduzeće mora biti poduzeće grupe" @@ -35905,7 +35988,7 @@ msgstr "Nadređeni Zadatak" #: erpnext/projects/doctype/task/task.py:169 msgid "Parent Task {0} is not a Template Task" -msgstr "Nadređeni Yadatak {0} nije Šablon Zadatak" +msgstr "Nadređeni Yadatak {0} nije Predložak Zadatak" #: erpnext/projects/doctype/task/task.py:192 msgid "Parent Task {0} must be a Group Task" @@ -35949,7 +36032,7 @@ msgstr "Djelomični Prenesen Materijal" msgid "Partial Payment in POS Transactions are not allowed." msgstr "Djelomično plaćanje u Kasa Transakcijama nije dozvoljeno." -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1746 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1757 msgid "Partial Stock Reservation" msgstr "Djelomična Rezervacija Zaliha" @@ -35957,7 +36040,7 @@ msgstr "Djelomična Rezervacija Zaliha" #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Partial stock can be reserved. For example, If you have a Sales Order of 100 units and the Available Stock is 90 units then a Stock Reservation Entry will be created for 90 units. " -msgstr "Djelomične zalihe mogu se rezervirati. Na primjer, ako imate Prodajni Nalog od 100 jedinica, a Raspoloživa Zaliha je 90 jedinica, tada će se kreirati unos rezervacije zaliha za 90 jedinica. " +msgstr "Djelomične zalihe mogu se rezervirati. Na primjer, ako imate Prodajni Nalog od 100 jedinica, a Raspoloživa Zaliha je 90 jedinica, tada će se izraditi unos rezervacije zaliha za 90 jedinica. " #. Option for the 'Status' (Select) field in DocType 'Timesheet' #. Option for the 'Status' (Select) field in DocType 'Delivery Note' @@ -36165,7 +36248,7 @@ msgstr "Dijelova na Milion" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:105 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:82 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:65 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1148 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1150 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:82 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:147 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 @@ -36179,6 +36262,7 @@ msgstr "Dijelova na Milion" #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:25 #: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:26 #: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:57 +#: erpnext/controllers/trends.py:413 #: erpnext/crm/doctype/appointment/appointment.json #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.js:55 @@ -36193,7 +36277,7 @@ msgstr "Stranka" #. Name of a DocType #: erpnext/accounts/doctype/party_account/party_account.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1160 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1162 msgid "Party Account" msgstr "Račun Stranke" @@ -36299,7 +36383,7 @@ msgstr "Šarža se ne poklapa" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 #: erpnext/accounts/report/general_ledger/general_ledger.py:785 -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/controllers/trends.py:419 erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 msgid "Party Name" @@ -36378,7 +36462,7 @@ msgstr "Specifični Artikal Stranke" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:92 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:69 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:52 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1142 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1144 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:69 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:141 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 @@ -36401,11 +36485,11 @@ msgstr "Specifični Artikal Stranke" msgid "Party Type" msgstr "Tip Stranke" -#: erpnext/accounts/party.py:845 +#: erpnext/accounts/party.py:861 msgid "Party Type and Party can only be set for Receivable / Payable account
{0}" msgstr "Tip Stranke i Stranka mogu se postaviti samo za račun Potraživanja / Plaćanja
{0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:646 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:704 msgid "Party Type and Party is mandatory for {0} account" msgstr "Tip Stranke i Strana su obavezni za {0} račun" @@ -36414,7 +36498,7 @@ msgid "Party Type and Party is required for Receivable / Payable account {0}" msgstr "Tip Stranke i Strana su obaveyni za račun Potraživanja / Plaćanja {0}" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:537 -#: erpnext/accounts/party.py:434 +#: erpnext/accounts/party.py:445 msgid "Party Type is mandatory" msgstr "Tip Stranke je obavezan" @@ -36425,7 +36509,7 @@ msgstr "Korisnik Stranke" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:114 msgid "Party account is required to create a payment entry." -msgstr "Račun Stranke je obavezan za kreiranje unosa plaćanja." +msgstr "Račun Stranke je obavezan za izradu unosa plaćanja." #: erpnext/accounts/doctype/payment_entry/payment_entry.js:471 msgid "Party can only be one of {0}" @@ -36446,7 +36530,7 @@ msgstr "Stranka je obavezna za stvaranje unosa plaćanja." #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:108 msgid "Party type is required to create a payment entry." -msgstr "Tip Stranke je obavezan za kreiranje unosa plaćanja." +msgstr "Tip Stranke je obavezan za izradu unosa plaćanja." #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json @@ -36494,12 +36578,12 @@ msgstr "Prošli Događaji" #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:25 #: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:68 -#: erpnext/public/js/shop_floor/shop_floor.js:1492 -#: erpnext/public/js/templates/shop_floor_template.html:763 +#: erpnext/public/js/shop_floor/shop_floor.js:1527 +#: erpnext/public/js/templates/shop_floor_template.html:783 msgid "Pause" msgstr "Pauza" -#: erpnext/public/js/shop_floor/shop_floor.js:1377 +#: erpnext/public/js/shop_floor/shop_floor.js:1412 msgid "Pause / Resume job" msgstr "Pauziraj / Nastavi posao" @@ -36555,7 +36639,7 @@ msgstr "Obaveze" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:50 #: erpnext/accounts/report/accounts_payable/accounts_payable.js:262 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1158 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1160 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209 #: erpnext/accounts/report/purchase_register/purchase_register.py:212 #: erpnext/accounts/report/purchase_register/purchase_register.py:253 @@ -36679,7 +36763,7 @@ msgstr "Datum Dospijeća Plaćanja" msgid "Payment Entries" msgstr "Nalozi Plaćanja" -#: erpnext/accounts/utils.py:1160 +#: erpnext/accounts/utils.py:1161 msgid "Payment Entries {0} are un-linked" msgstr "Unosi Plaćanja {0} nisu povezani" @@ -36716,7 +36800,7 @@ msgstr "Nalog Plaćanja" #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:342 msgid "Payment Entry Created" -msgstr "Unos Plaćanja Kreiran" +msgstr "Unos Plaćanja Izrađen" #. Name of a DocType #: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json @@ -36728,22 +36812,22 @@ msgstr "Odbitak za Unos Plaćanja" msgid "Payment Entry Reference" msgstr "Referenca za Unos Plaćanja" -#: erpnext/accounts/doctype/payment_request/payment_request.py:636 +#: erpnext/accounts/doctype/payment_request/payment_request.py:637 msgid "Payment Entry already exists" msgstr "Unos Plaćanja već postoji" -#: erpnext/accounts/utils.py:657 +#: erpnext/accounts/utils.py:658 msgid "Payment Entry has been modified after you pulled it. Please pull it again." msgstr "Unos plaćanja je izmijenjen nakon što ste ga povukli. Molim te povuci ponovo." #: erpnext/accounts/doctype/payment_request/payment_request.py:176 -#: erpnext/accounts/doctype/payment_request/payment_request.py:796 +#: erpnext/accounts/doctype/payment_request/payment_request.py:797 msgid "Payment Entry is already created" -msgstr "Unos plaćanja je već kreiran" +msgstr "Unos plaćanja je već izrađen" #: erpnext/accounts/services/advances.py:122 msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice." -msgstr "Unos plaćanja {0} je povezan naspram Naloga {1}, provjerite da li treba biti povučen kao predujam u ovoj fakturi." +msgstr "Unos plaćanja {0} je povezan naspram Naloga {1}, provjeri da li treba biti povučen kao predujam u ovoj fakturi." #: erpnext/selling/page/point_of_sale/pos_payment.js:378 msgid "Payment Failed" @@ -36775,9 +36859,9 @@ msgstr "Platni Prolaz" msgid "Payment Gateway Account" msgstr "Račun Platnog Prolaza" -#: erpnext/accounts/utils.py:1527 +#: erpnext/accounts/utils.py:1522 msgid "Payment Gateway Account not created, please create one manually." -msgstr "Račun Platnog Prolaza nije kreiran, kreiraj ga ručno." +msgstr "Račun Platnog Prolaza nije izrađen, izradi ga ručno." #. Label of the section_break_7 (Section Break) field in DocType 'Payment #. Request' @@ -36989,21 +37073,21 @@ msgstr "Nerješeni Zahtjev Plaćanja" msgid "Payment Request Type" msgstr "Tip Zahtjeva Plaćanja" -#: erpnext/accounts/doctype/payment_request/payment_request.py:869 +#: erpnext/accounts/doctype/payment_request/payment_request.py:870 msgid "Payment Request for {0}" msgstr "Platni Zahtjev za {0}" -#: erpnext/accounts/doctype/payment_request/payment_request.py:810 +#: erpnext/accounts/doctype/payment_request/payment_request.py:811 msgid "Payment Request is already created" -msgstr "Platni Zahtjev je već kreiran" +msgstr "Platni Zahtjev je već izrađen" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:454 msgid "Payment Request took too long to respond. Please try requesting for payment again." msgstr "Odgovor na Platni Zahtjev trajao je predugo. Pokušajte ponovo zatražiti plaćanje." -#: erpnext/accounts/doctype/payment_request/payment_request.py:727 +#: erpnext/accounts/doctype/payment_request/payment_request.py:728 msgid "Payment Requests cannot be created against: {0}" -msgstr "Platni Zahtjevi ne mogu se kreirati naspram: {0}" +msgstr "Platni Zahtjevi ne mogu se izraditi naspram: {0}" #. Description of the 'Create payment requests in Draft status' (Check) field #. in DocType 'Accounts Settings' @@ -37033,9 +37117,9 @@ msgstr "Zahtjevi Plaćanja stvoren iz Prodajne / Nabavne Fakture bit će eksplic msgid "Payment Schedule" msgstr "Raspored Plaćanja" -#: erpnext/accounts/doctype/payment_request/payment_request.py:749 +#: erpnext/accounts/doctype/payment_request/payment_request.py:750 msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." -msgstr "Zahtjevi za plaćanje na osnovu rasporeda plaćanja ne mogu se kreirati jer za ovaj dokument već postoji unos plaćanja." +msgstr "Zahtjevi za plaćanje na osnovu rasporeda plaćanja ne mogu se izraditi jer za ovaj dokument već postoji unos plaćanja." #: erpnext/public/js/controllers/transaction.js:544 msgid "Payment Schedules" @@ -37049,19 +37133,17 @@ msgstr "Rasporedi Plaćanja" #. Label of the payment_term (Link) field in DocType 'Payment Terms Template #. Detail' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_reference/payment_reference.json #: erpnext/accounts/doctype/payment_schedule/payment_schedule.json #: erpnext/accounts/doctype/payment_term/payment_term.json #: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 -#: erpnext/accounts/report/gross_profit/gross_profit.py:449 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1213 +#: erpnext/accounts/report/gross_profit/gross_profit.py:451 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/public/js/controllers/transaction.js:559 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" msgstr "Uslovi Plaćanja" @@ -37133,12 +37215,12 @@ msgstr "Status Uslova Plaćanja Prodajnog Naloga" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json msgid "Payment Terms Template" -msgstr "Šablon Uslova Plaćanja" +msgstr "Predložak Uslova Plaćanja" #. Name of a DocType #: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json msgid "Payment Terms Template Detail" -msgstr "Detalji Šablona Uslova Plaćanja" +msgstr "Detalji Predloška Uslova Plaćanja" #. Description of the 'Automatically fetch Payment Terms from Order/Quotation' #. (Check) field in DocType 'Accounts Settings' @@ -37167,7 +37249,7 @@ msgstr "Tip Plaćanja mora biti Uplata, Isplata ili Interni Prijenos" msgid "Payment URL" msgstr "URL Plaćanja" -#: erpnext/accounts/utils.py:1148 +#: erpnext/accounts/utils.py:1149 msgid "Payment Unlink Error" msgstr "Greška Otkazivanja Veze" @@ -37181,7 +37263,7 @@ msgstr "Iznos plaćanja ne može biti manji ili jednak 0" #: erpnext/accounts/doctype/payment_request/payment_request.py:294 msgid "Payment gateway {0} failed to create a payment session" -msgstr "Platni portal {0} nije uspio kreirati sesiju plaćanja" +msgstr "Platni portal {0} nije uspio izraditi sesiju plaćanja" #: erpnext/accounts/doctype/pos_profile/pos_profile.py:183 msgid "Payment methods are mandatory. Please add at least one payment method." @@ -37301,6 +37383,10 @@ msgstr "Vezane Valute" msgid "Pegged Currency Details" msgstr "Vezana Valuta Detalji" +#: erpnext/public/js/shop_floor/shop_floor.js:24 +msgid "Pending / In Progress" +msgstr "Na čekanju / U toku" + #: erpnext/setup/doctype/email_digest/templates/default.html:93 msgid "Pending Activities" msgstr "Aktivnosti na Čekanju" @@ -37329,7 +37415,7 @@ msgstr "Količina na Čekanju" #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:54 #: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:44 #: erpnext/manufacturing/doctype/job_card/job_card.js:272 -#: erpnext/public/js/shop_floor/shop_floor.js:782 +#: erpnext/public/js/shop_floor/shop_floor.js:818 msgid "Pending Quantity" msgstr "Količina na Čekanju" @@ -37365,7 +37451,7 @@ msgstr "Radni Nalog na Čekanju" msgid "Pending activities for today" msgstr "Današnje Aktivnosti na Čekanju" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:277 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:285 msgid "Pending processing" msgstr "Obrada na Čekanju" @@ -37444,17 +37530,17 @@ msgstr "Podaci za izdvajanje po tabeli za PDF izvode (redovi, bbox, slika strani #. Percentage' #: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json msgid "Percentage (%)" -msgstr "Procentualno (%)" +msgstr "Postotno (%)" #. Label of the percentage_allocation (Float) field in DocType 'Monthly #. Distribution Percentage' #: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json msgid "Percentage Allocation" -msgstr "Procentualna Dodjela" +msgstr "Postotna Dodjela" #: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py:57 msgid "Percentage Allocation should be equal to 100%" -msgstr "Procentualna Dodjela bi trebala biti jednaka 100%" +msgstr "Postotna Dodjela bi trebala biti jednaka 100%" #. Description of the 'Over Billing Allowance (%)' (Float) field in DocType #. 'Item' @@ -37511,11 +37597,9 @@ msgstr "Završni Unos Perioda za Tekući Period" #. Balance' #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json #: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Period Closing Voucher" msgstr "Verifikat Zatvaranje Perioda" @@ -37638,7 +37722,7 @@ msgstr "Račun razlike Periodičnog Unosa" #: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json #: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:54 -#: erpnext/public/js/financial_statements.js:451 +#: erpnext/public/js/financial_statements.js:488 msgid "Periodicity" msgstr "Periodičnost" @@ -37674,7 +37758,7 @@ msgstr "Lični Detalji" #. Label of the personal_email (Data) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Personal Email" -msgstr "Liöna e-pošta" +msgstr "Lična adresa e-pošte" #: erpnext/setup/setup_wizard/setup_wizard.py:33 msgid "Personalizing your setup" @@ -37688,16 +37772,16 @@ msgstr "Benzin" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:113 #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:110 msgid "Phantom BOM cannot be created for stock item {0}." -msgstr "Fantomska Šarža se ne može kreirati za artikal na zalihi {0}." +msgstr "Viritualna Šarža se ne može izraditi za artikal na zalihi {0}." #: erpnext/manufacturing/doctype/bom/bom_item_preview.html:16 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321 msgid "Phantom Item" -msgstr "Fantomski Artikel" +msgstr "Viritualni Artikel" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430 msgid "Phantom Item is mandatory" -msgstr "Fantomski Artikal je obavezan" +msgstr "Viritualni Artikal je obavezan" #: erpnext/setup/setup_wizard/operations/install_fixtures.py:234 msgid "Pharmaceutical" @@ -37737,11 +37821,11 @@ msgstr "Broj Telefona" #. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/sales_order/sales_order.js:1066 #: erpnext/stock/doctype/delivery_note/delivery_note.js:199 -#: erpnext/stock/doctype/material_request/material_request.js:156 +#: erpnext/stock/doctype/material_request/material_request.js:159 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:154 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:136 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Pick List" @@ -37874,12 +37958,12 @@ msgstr "Quart Liquid (US)" #: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:8 msgid "Pipeline By" -msgstr "Lijevak prema" +msgstr "Proces Prema" #. Label of the place_of_issue (Data) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Place of Issue" -msgstr "Lokacija Slučaja" +msgstr "Lokacija Zahtjeva" #. Label of the plaid_access_token (Data) field in DocType 'Bank' #: erpnext/accounts/doctype/bank/bank.json @@ -37916,10 +38000,8 @@ msgstr "Plaid Tajna" #. Label of a Link in the Invoicing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json -#: erpnext/workspace_sidebar/banking.json msgid "Plaid Settings" msgstr "Plaid Postavke" @@ -37947,7 +38029,7 @@ msgstr "Planiraj materijal za podsklopove" #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Plan operations X days in advance" -msgstr "Planiraj Operacije X dana unaprijed" +msgstr "Planiraj Radnje X dana unaprijed" #. Description of the 'Allow Overtime' (Check) field in DocType 'Manufacturing #. Settings' @@ -37973,6 +38055,10 @@ msgstr "Planirano" msgid "Planned End Date" msgstr "Planirani Datum Završetka" +#: erpnext/manufacturing/doctype/work_order/work_order.py:324 +msgid "Planned End Date cannot be before Planned Start Date" +msgstr "Planirani Datum Završetka ne može biti prije Planiranog Datuma Početka" + #. Label of the planned_end_time (Datetime) field in DocType 'Work Order #. Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json @@ -38003,7 +38089,7 @@ msgstr "Planirani Nabavni Nalog" msgid "Planned Qty" msgstr "Planirana Količina" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:199 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:225 msgid "Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured." msgstr "Planirana Količina: Količina za koju Radni Nalog postoji, ali čeka na proizvodnju." @@ -38070,7 +38156,7 @@ msgstr "Proizvodna Površina" msgid "Plants and Machineries" msgstr "Postrojenja i Mašinerije" -#: erpnext/stock/doctype/pick_list/pick_list.py:660 +#: erpnext/stock/doctype/pick_list/pick_list.py:669 msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Popuni Zalihe Artikala i ažuriraj Listu Odabira da nastavite. Za prekid, otkaži Listu Odabira." @@ -38084,7 +38170,7 @@ msgstr "Odaberi Klijenta" msgid "Please Select a Supplier" msgstr "Odaberi Dobavljača" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:179 msgid "Please Set Priority" msgstr "Postavi Prioritet" @@ -38096,7 +38182,7 @@ msgstr "Podstavi Grupu Dobavljača u Postavkama Nabave." msgid "Please Specify Account" msgstr "Navedi Račun" -#: erpnext/buying/doctype/supplier/supplier.py:129 +#: erpnext/buying/doctype/supplier/supplier.py:137 msgid "Please add 'Supplier' role to user {0}." msgstr "Dodaj ulogu 'Dobavljač' korisniku {0}." @@ -38106,17 +38192,17 @@ msgstr "Dodaj Način Plaćanja i detalje o Početnom Stanju." #: erpnext/manufacturing/doctype/bom/bom.js:39 msgid "Please add Operations first." -msgstr "Prvo dodaj Operacije." +msgstr "Prvo dodaj Radnje." #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:210 msgid "Please add Request for Quotation to the sidebar in Portal Settings." msgstr "Dodaj Zahtjev za Ponudu na bočnu traku u Postavci Portala." -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:421 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:422 msgid "Please add Root Account for - {0}" msgstr "Dodaj Root Račun za - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:343 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Dodaj Račun za Privremeno Otvaranje u Kontni Plan" @@ -38128,11 +38214,11 @@ msgstr "Dodaj račun za pravilo bankovnog unosa." msgid "Please add at least one Serial No / Batch No" msgstr "Dodaj barem jedan Serijski / Šaržni Broj" -#: erpnext/stock/doctype/item/item.js:921 +#: erpnext/stock/doctype/item/item.js:942 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "Dodaj barem jedan red u Postavke Artikala sa poduzećem prije postavljanja početnih zaliha." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:53 msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "Dodaj barem jednog korisnika na listu Dozvoljeni Korisnici kako biste omogućili sinhronizaciju podataka sa Prodajnom Podrškom." @@ -38145,7 +38231,7 @@ msgstr "Dodaj kolonu Bankovni Račun" msgid "Please add the account to root level Company - {0}" msgstr "Dodaj Račun Matičnom Poduzeću - {0}" -#: erpnext/controllers/website_list_for_contact.py:305 +#: erpnext/controllers/website_list_for_contact.py:307 msgid "Please add {1} role to user {0}." msgstr "Dodaj {1} ulogu korisniku {0}." @@ -38157,11 +38243,11 @@ msgstr "Podesi količinu ili uredi {0} da nastavite." msgid "Please attach CSV file" msgstr "Priložite CSV datoteku" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1257 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1263 msgid "Please cancel and amend the Payment Entry" msgstr "Poništi i Izmijeni Unos Plaćanja" -#: erpnext/accounts/utils.py:1147 +#: erpnext/accounts/utils.py:1148 msgid "Please cancel payment entry manually first" msgstr "Ručno otkaži Unos Plaćanja" @@ -38185,13 +38271,13 @@ msgstr "Odaberi Obradi Odloženo Knjigovodstvo {0} i podnesi ručno nakon otklan #: erpnext/manufacturing/doctype/bom/bom.js:120 msgid "Please check either with operations or FG Based Operating Cost." -msgstr "Odaberi ili s operacijama ili operativnim troškovima zasnovanim na Gotovom Proizvodu." +msgstr "Odaberi ili s radnjama ili operativnim troškovima zasnovanim na Gotovom Proizvodu." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:149 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:150 msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." -msgstr "Odaberi 'Omogući Serijski i Šaržni broj za Artikal' u {0} kako biste kreirali Paket Serijskih i Šaržnih brojeva za artikal." +msgstr "Odaberi 'Omogući Serijski i Šaržni broj za Artikal' u {0} kako biste izradili Paket Serijskih i Šaržnih brojeva za artikal." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:621 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:770 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Provjeri poruku o grešci i poduzmite potrebne radnje da popravite grešku, a zatim ponovo pokrenite ponovno knjiženje." @@ -38206,17 +38292,17 @@ msgstr "Provjeri e-poštu da potvrdite termin" #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" -msgstr "Klikni na 'Generiraj Raspored'" +msgstr "Klikni na 'Izradi Raspored'" #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" -msgstr "Klikni na 'Generiraj Raspored' da preuzmeš serijski broj dodan za Artikal {0}" +msgstr "Klikni na 'Izradi Raspored' da preuzmeš serijski broj dodan za Artikal {0}" #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:104 msgid "Please click on 'Generate Schedule' to get schedule" -msgstr "Klikni na 'Generiraj Raspored' da generišeš raspored" +msgstr "Klikni na 'Izradi Raspored' da izradiš raspored" -#: erpnext/public/js/shop_floor/shop_floor.js:987 +#: erpnext/public/js/shop_floor/shop_floor.js:1023 msgid "Please complete every check before submitting the inspection." msgstr "Završite svaku provjeru prije podnošenja kontrole." @@ -38232,11 +38318,11 @@ msgstr "Konfiguriraj račune za pravilo bankovnog unosa." msgid "Please contact any of the following users for this transaction." msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika za ovu transakciju." -#: erpnext/selling/doctype/customer/customer.py:534 +#: erpnext/selling/doctype/customer/customer.py:551 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da produžite kreditna ograničenja za {0}: {1}" -#: erpnext/selling/doctype/customer/customer.py:527 +#: erpnext/selling/doctype/customer/customer.py:544 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}." @@ -38246,25 +38332,25 @@ msgstr "Konvertiraj nadređeni račun u odgovarajućoj podređenojm poduzeću u #: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." -msgstr "Kreiraj Klijenta od Potencijalnog Klijenta {0}." +msgstr "Izradi Klijenta od Potencijalnog Klijenta {0}." #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." -msgstr "Kreiraj verifikate za Obračunate Troškove naspram Faktura koje imaju omogućenu opciju „Ažuriraj Zalihe“." +msgstr "Izradi verifikate za Obračunate Troškove naspram Faktura koje imaju omogućenu opciju „Ažuriraj Zalihe“." #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75 msgid "Please create a new Accounting Dimension if required." -msgstr "Kreiraj novu Knjigovodstvenu Dimenziju ako je potrebno." +msgstr "Izradi novu Knjigovodstvenu Dimenziju ako je potrebno." #: erpnext/accounts/services/internal_transfer.py:89 msgid "Please create purchase from internal sale or delivery document itself" -msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave" +msgstr "Izradi nabavu iz interne prodaje ili samog dokumenta dostave" #: erpnext/assets/doctype/asset/asset.py:469 msgid "Please create purchase receipt or purchase invoice for the item {0}" -msgstr "Kreiraj Nabavni Račun ili Nabavnu Fakturu za artikal {0}" +msgstr "Izradi Nabavni Račun ili Nabavnu Fakturu za artikal {0}" -#: erpnext/stock/doctype/item/item.py:716 +#: erpnext/stock/doctype/item/item.py:721 msgid "Please delete Product Bundle {0}, before merging {1} into {2}" msgstr "Izbriši Artikal Paket {0}, prije spajanja {1} u {2}" @@ -38276,9 +38362,9 @@ msgstr "Privremeno onemogući tok rada za Nalog Knjiženja {0}" msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Ne knjiži trošak više imovine naspram pojedinačne imovine." -#: erpnext/controllers/item_variant.py:296 +#: erpnext/controllers/item_variant.py:358 msgid "Please do not create more than 500 items at a time" -msgstr "Ne Kreiraj više od 500 artikala odjednom" +msgstr "Ne Izradi više od 500 artikala odjednom" #: erpnext/accounts/doctype/budget/budget.py:185 msgid "Please enable Applicable on Booking Actual Expenses" @@ -38290,7 +38376,7 @@ msgstr "Omogući Primjenjivo na Nabavni Nalog i Primjenjivo na Knjiženje Stvarn #: erpnext/stock/doctype/pick_list/pick_list.py:321 msgid "Please enable Use Old Serial / Batch Fields to make_bundle" -msgstr "Omogući Koristi Stari Serijski / Šaržna polja za Kreiraj Paket" +msgstr "Omogući Koristi Stari Serijski / Šaržna polja za Izradi Paket" #: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:24 msgid "Please enable only if the understand the effects of enabling this." @@ -38312,20 +38398,20 @@ msgstr "Potvrdi da je {0} račun račun Bilansa Stanja. Možete promijeniti nadr msgid "Please ensure that the {0} account {1} is a Payable account. You can change the account type to Payable or select a different account." msgstr "Potvrdi da je {0} račun {1} Troškovni račun. Možete promijeniti vrstu računa u Troškovni ili odabrati drugi račun." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 msgid "Please ensure {0} account is a Balance Sheet account." msgstr "Provjeri da li je račun {0} račun Bilansa Stanja." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 msgid "Please ensure {0} account {1} is a Receivable account." msgstr "Provjeri da li je {0} račun {1} račun Potraživanja." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:141 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" -msgstr "Unesi Račun Razlike ili postavite standard Račun Usklađvanja Zaliha za {0}" +msgstr "Unesi Račun Razlike ili postavi standard Račun Usklađvanja Zaliha za {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:559 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:962 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:968 msgid "Please enter Account for Change Amount" msgstr "Unesi Račun za Kusur" @@ -38335,9 +38421,9 @@ msgstr "Unesi Odobravajuća Uloga ili Odobravajućeg Korisnika" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:809 msgid "Please enter Batch No" -msgstr "Molimo unesite broj Šarže" +msgstr "Unesi broj Šarže" -#: erpnext/stock/doctype/stock_reconciliation/services/gl_composer.py:19 +#: erpnext/stock/doctype/stock_reconciliation/services/gl_composer.py:26 msgid "Please enter Cost Center" msgstr "Unesi Centar Troškova" @@ -38347,14 +38433,14 @@ msgstr "Unesi Datum Dostave" #: erpnext/setup/doctype/sales_person/sales_person_tree.js:9 msgid "Please enter Employee Id of this sales person" -msgstr "Unesi Personal Id ovog Prodavača" +msgstr "Unesi Osobni ID ovog Prodavača" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1103 msgid "Please enter Expense Account" msgstr "Unesi Račun Troškova" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.js:84 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:99 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:98 msgid "Please enter Item Code to get Batch Number" msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" @@ -38362,7 +38448,7 @@ msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" msgid "Please enter Item Code to get batch no" msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:85 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:104 msgid "Please enter Item first" msgstr "Unesi Artikal" @@ -38370,7 +38456,7 @@ msgstr "Unesi Artikal" msgid "Please enter Maintenance Details first" msgstr "Unesi Detalje Održavanju" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:209 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:232 msgid "Please enter Planned Qty for Item {0} at row {1}" msgstr "Unesi Planiranu Količinu za artikal {0} za red {1}" @@ -38390,13 +38476,13 @@ msgstr "Unesi Nabavni Račun" msgid "Please enter Reference date" msgstr "Unesi Referentni Datum" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:400 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:401 msgid "Please enter Root Type for account- {0}" msgstr "Unesi Kontnu Klasu za račun- {0}" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:811 msgid "Please enter Serial No" -msgstr "Molimo unesite Serijski broj" +msgstr "Unesi Serijski broj" #: erpnext/public/js/utils/serial_no_batch_selector.js:320 msgid "Please enter Serial Nos" @@ -38411,7 +38497,7 @@ msgid "Please enter Warehouse and Date" msgstr "Unesi Skladište i Datum" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:501 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:958 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:964 msgid "Please enter Write Off Account" msgstr "Unesi Otpisni Račun" @@ -38439,7 +38525,7 @@ msgstr "Unesi barem jedan datum dostave i količinu" msgid "Please enter company name first" msgstr "Unesi naziv poduzeća" -#: erpnext/controllers/accounts_controller.py:1382 +#: erpnext/controllers/accounts_controller.py:1309 msgid "Please enter default currency in Company Master" msgstr "Unesi Standard Valutu u Postavkama Poduzeća" @@ -38455,13 +38541,13 @@ msgstr "Unesi broj mobilnog telefona." msgid "Please enter parent cost center" msgstr "Unesi Nadređeni Centar Troškova" -#: erpnext/public/js/utils/barcode_scanner.js:186 +#: erpnext/public/js/utils/barcode_scanner.js:191 msgid "Please enter quantity for item {0}" msgstr "Unesi količinu za artikal {0}" #: erpnext/setup/doctype/employee/employee.py:294 msgid "Please enter relieving date." -msgstr "Unesi Datum Otpusta." +msgstr "Unesi Datum Otkaza." #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:132 msgid "Please enter serial nos" @@ -38479,7 +38565,7 @@ msgstr "Unesi prvi datum dostave" msgid "Please enter the phone number first" msgstr "Unesi broj telefona" -#: erpnext/controllers/buying_controller.py:1193 +#: erpnext/controllers/buying_controller.py:1201 msgid "Please enter the {schedule_date}." msgstr "Unesi {schedule_date}." @@ -38505,7 +38591,7 @@ msgstr "Popuni Tabelu Prodajnih Naloga" #: erpnext/stock/doctype/shipment/shipment.js:277 msgid "Please first set Full Name, Email and Phone for the user" -msgstr "Prvo postavite puno ime, e-poštu i broj telefona za korisnika" +msgstr "Prvo postavi puno ime, e-poštu i broj telefona za korisnika" #: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:94 msgid "Please fix overlapping time slots for {0}" @@ -38517,11 +38603,11 @@ msgstr "Popravi preklapanje vremenskih termina za {0}." #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:272 msgid "Please generate To Delete list before submitting" -msgstr "Molimo vas da generirate listu za brisanje prije podnošenja" +msgstr "Izradi listu za brisanje prije podnošenja" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:70 msgid "Please generate the To Delete list before submitting" -msgstr "Molimo vas da generirate listu za brisanje prije podnošenja" +msgstr "Izradi listu za brisanje prije podnošenja" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 msgid "Please import accounts against parent company or enable {0} in company master." @@ -38529,9 +38615,9 @@ msgstr "Uvezi račune naspram matičnog poduzeća ili omogući {0} u Postavkama #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." -msgstr "Provjerite da gore navedeni personal podneseni izvještaju drugom aktivnom personalu." +msgstr "Provjeri da gore navedeni personal podneseni izvještaju drugom aktivnom personalu." -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:379 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:380 msgid "Please make sure the file you are using has 'Parent Account' column present in the header." msgstr "Potvrdi da datoteka koju koristite ima kolonu 'Nadređeni Račun' u zaglavlju." @@ -38539,7 +38625,7 @@ msgstr "Potvrdi da datoteka koju koristite ima kolonu 'Nadređeni Račun' u zagl msgid "Please make sure you really want to delete all the transactions for {0}. Your master data will remain as it is. This action cannot be undone." msgstr "Da li zaista želiš izbrisati sve transakcije za {0}. Vaši glavni podaci će ostati onakvi kakvi jesu. Ova radnja se ne može poništiti." -#: erpnext/stock/doctype/item/item.js:1032 +#: erpnext/stock/doctype/item/item.js:1053 msgid "Please mention 'Weight UOM' along with Weight." msgstr "Navedi 'Jedinicu Težine' zajedno s Težinom." @@ -38552,7 +38638,7 @@ msgstr "Navedi '{0}' u: {1}" msgid "Please mention no of visits required" msgstr "Navedi broj obaveznih posjeta" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:73 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:74 msgid "Please mention the Current and New BOM for replacement." msgstr "Navedi Trenutnu i Novu Sastavnicu za zamjenu." @@ -38583,11 +38669,11 @@ msgstr "Spremi" #: erpnext/selling/doctype/sales_order/sales_order.js:903 msgid "Please save the Sales Order before adding a delivery schedule." -msgstr "Sačuvaj Prodajni Nalog prije dodavanja rasporeda dostave." +msgstr "Spremi Prodajni Nalog prije dodavanja rasporeda dostave." #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:79 msgid "Please select Template Type to download template" -msgstr "Odaberi Tip Šablona za preuzimanje šablona" +msgstr "Odaberi Tip Predloška za preuzimanje predloška" #: erpnext/controllers/taxes_and_totals.py:860 #: erpnext/public/js/controllers/taxes_and_totals.js:825 @@ -38598,7 +38684,7 @@ msgstr "Odaberi Primijeni Popust na" msgid "Please select BOM against item {0}" msgstr "Odaberi Sastavnicu naspram Artikla {0}" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:204 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:227 msgid "Please select BOM for Item in Row {0}" msgstr "Odaberi Sastavnicu za artikal u redu {0}" @@ -38620,7 +38706,7 @@ msgstr "Odaberi Tip Naknade" msgid "Please select Company" msgstr "Odaberi Poduzeće" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:157 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 msgid "Please select Company and Posting Date to get entries" msgstr "Odaberi Poduzeće i Datum Knjiženja da biste preuzeli unose" @@ -38640,7 +38726,7 @@ msgstr "Odaberi Datum Završetka za Zapise Završenog Održavanja Imovine" msgid "Please select Customer first" msgstr "Prvo odaberi Klijenta" -#: erpnext/setup/doctype/company/company.py:603 +#: erpnext/setup/doctype/company/company.py:605 msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Odaberi Postojeće Poduzeće za izradu Kontnog Plana" @@ -38649,8 +38735,8 @@ msgstr "Odaberi Postojeće Poduzeće za izradu Kontnog Plana" msgid "Please select Finished Good Item for Service Item {0}" msgstr "Molimo odaberi Artikal Gotovog Proizvoda za servisni artikal {0}" -#: erpnext/assets/doctype/asset/asset.js:763 -#: erpnext/assets/doctype/asset/asset.js:778 +#: erpnext/assets/doctype/asset/asset.js:771 +#: erpnext/assets/doctype/asset/asset.js:786 msgid "Please select Item Code first" msgstr "Odaberi Kod Artikla" @@ -38690,7 +38776,7 @@ msgstr "Odaberi Cjenovnik" msgid "Please select Qty against item {0}" msgstr "Odaberi Količina naspram Artikla {0}" -#: erpnext/stock/doctype/item/item.py:390 +#: erpnext/stock/doctype/item/item.py:395 msgid "Please select Sample Retention Warehouse in Stock Settings first" msgstr "Odaberi Skladište za Zadržavanje Uzoraka u Postavkama Zaliha" @@ -38706,9 +38792,9 @@ msgstr "Odaberi Datum Početka i Datum Završetka za Artikal {0}" msgid "Please select Stock Asset Account" msgstr "Odaberi Račun Imovine Zaliha" -#: erpnext/setup/doctype/company/company.py:230 +#: erpnext/setup/doctype/company/company.py:232 msgid "Please select Stock Delivered But Not Billed Account" -msgstr "Odaberite Zalihe Dostavljene ali ne i Fakturisane Račun" +msgstr "Odaberi Zalihe Dostavljene ali ne i Fakturisane Račun" #: erpnext/accounts/services/internal_transfer.py:47 msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}" @@ -38718,14 +38804,14 @@ msgstr "Odaberi Račun Nerealiziranog Rezultata ili postavi Standard Račun Nere msgid "Please select a BOM" msgstr "Odaberi Sastavnicu" -#: erpnext/accounts/party.py:436 +#: erpnext/accounts/party.py:447 #: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -#: erpnext/stock/doctype/pick_list/pick_list.py:1388 +#: erpnext/stock/doctype/pick_list/pick_list.py:1409 msgid "Please select a Company" msgstr "Odaberi Poduzeće" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 -#: erpnext/manufacturing/doctype/bom/bom.js:730 +#: erpnext/manufacturing/doctype/bom/bom.js:734 #: erpnext/manufacturing/doctype/bom/bom.py:302 #: erpnext/public/js/controllers/accounts.js:274 #: erpnext/public/js/controllers/transaction.js:3433 @@ -38759,15 +38845,15 @@ msgstr "Odaberi Radni Nalog." #: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:35 msgid "Please select a bank account to view the bank clearance summary." -msgstr "Molimo odaberite bankovni račun da biste vidjeli sažetak bankovnih poravnanja." +msgstr "Odaberi bankovni račun da biste vidjeli sažetak bankovnih poravnanja." #: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:28 msgid "Please select a bank account to view the bank reconciliation statement." -msgstr "Molimo odaberite bankovni račun za pregled izvoda o usklađivanju bankovnog računa." +msgstr "Odaberi bankovni račun za pregled izvoda o usklađivanju bankovnog računa." #: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:32 msgid "Please select a bank and set the date range" -msgstr "Molimo odaberite banku i postavite raspon datuma" +msgstr "Odaberi banku i postavi raspon datuma" #: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 @@ -38805,7 +38891,7 @@ msgstr "Odaberi učestalost za raspored dostave" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" -msgstr "Odaberi red za kreiranje Unosa Ponovnog Knjiženje" +msgstr "Odaberi red za izradu Unosa Ponovnog Knjiženje" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please select a supplier" @@ -38827,13 +38913,13 @@ msgstr "Odaberi važeći tip dokumenta." msgid "Please select a value for {0} quotation_to {1}" msgstr "Odaberi Vrijednost za {0} Ponuda za {1}" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:194 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:203 msgid "Please select an item code before setting the warehouse." -msgstr "Odaberite kod artikla prije postavljanja skladišta." +msgstr "Odaberi kod artikla prije postavljanja skladišta." -#: erpnext/controllers/item_variant.py:290 +#: erpnext/controllers/item_variant.py:352 msgid "Please select at least one attribute value" -msgstr "Molimo odaberite barem jednu vrijednost atributa" +msgstr "Odaberi barem jednu vrijednost atributa" #: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43 msgid "Please select at least one filter: Item Code, Batch, or Serial No." @@ -38845,11 +38931,11 @@ msgstr "Odaberi jedan artikal za nastavak" #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." -msgstr "Molimo odaberite barem jedan artikal za ažuriranje isporučene količine." +msgstr "Odaberi barem jedan artikal za ažuriranje isporučene količine." #: erpnext/manufacturing/doctype/work_order/work_order.js:401 msgid "Please select at least one operation to create Job Card" -msgstr "Odaberi barem jednu operaciju za stvaranje Kartice Posla" +msgstr "Odaberi barem jednu radnju za stvaranje Kartice Posla" #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" @@ -38874,15 +38960,15 @@ msgstr "Odaberi Datum" #: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:39 msgid "Please select dates to view the bank clearance summary." -msgstr "Molimo odaberite datume za pregled sažetka bankovnog poravnanja." +msgstr "Odaberi datume za pregled sažetka bankovnog poravnanja." #: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:32 msgid "Please select dates to view the bank reconciliation statement." -msgstr "Molimo odaberite datume za pregled izvoda o usklađivanju bankovnog računa." +msgstr "Odaberi datume za pregled izvoda o usklađivanju bankovnog računa." #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:30 msgid "Please select either the Item or Warehouse or Warehouse Type filter to generate the report." -msgstr "Odaberite filter Artikal ili Skladišta ili Tip Skladišta da biste generirali izvještaj." +msgstr "Odaberi filter Artikal ili Skladišta ili Tip Skladišta da biste izradili izvještaj." #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:226 msgid "Please select item code" @@ -38902,12 +38988,12 @@ msgstr "Odaberi artikle koje želite izbrisati iz rezervacije." #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" -msgstr "Odaberi samo jedan red da kreirate Unos Ponovnog Knjiženja" +msgstr "Odaberi samo jedan red da izradi Unos Ponovnog Knjiženja" #: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" -msgstr "Odaberi redove da kreirate unose za ponovno knjiženje" +msgstr "Odaberi redove da izradi unose za ponovno knjiženje" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:98 msgid "Please select the Company" @@ -38917,7 +39003,7 @@ msgstr "Odaberi Poduzeće" msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "Odaberi Tip Višeslojnog Programa za više od jednog pravila prikupljanja." -#: erpnext/stock/doctype/item/item.js:433 +#: erpnext/stock/doctype/item/item.js:448 msgid "Please select the Warehouse first" msgstr "Prvo odaberi skladište" @@ -38943,7 +39029,7 @@ msgid "Please select weekly off day" msgstr "Odaberi sedmične neradne dane" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1215 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:649 msgid "Please select {0} first" msgstr "Odaberi {0}" @@ -39025,10 +39111,6 @@ msgstr "Postavi Račun Osnovnih Sredstava u {0} na {1}." msgid "Please set Parent Row No for item {0}" msgstr "Postavi Broj Nadređenog reda za artikal {0}" -#: erpnext/controllers/buying_controller.py:355 -msgid "Please set Purchase Expense Contra Account in Company {0}" -msgstr "Postavi Kontra Račun Ttroškova Nabave u {0}" - #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:24 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:35 msgid "Please set Root Type" @@ -39038,7 +39120,7 @@ msgstr "Postavi Kontni Tip" msgid "Please set Tax ID for the customer '{0}'" msgstr "Postavi Fiskalni Broj za Klijenta '{0}'" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:369 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" msgstr "Postavi Nerealizovani Račun Rezultata u {0}" @@ -39056,7 +39138,7 @@ msgstr "Postavi Poduzeće" #: erpnext/assets/doctype/asset/asset.py:378 msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" -msgstr "Postavi Centar Troškova za Imovinu ili postavite Centar Troškova Amortizacije za {0}" +msgstr "Postavi Centar Troškova za Imovinu ili postavi Centar Troškova Amortizacije za {0}" #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.py:371 msgid "Please set a Manufacturing Variance Account for Item {0} or a Default Manufacturing Variance Account in Company {1}." @@ -39064,14 +39146,14 @@ msgstr "Postavi Račun Odstupanja Proizvodnje za artikal {0} ili Standard Račun #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.py:348 msgid "Please set a Purchase Price Variance Account for Item {0} or a Default Purchase Price Variance Account in Company {1}." -msgstr "Postavi Račun Odstupanja Nabavne Cijene za artikal {0} ili Standard Račun Odstupanja Nabavne Cijene za {1}." +msgstr "Postavi Račun Odstupanja Nabavne Cjene za artikal {0} ili Standard Račun Odstupanja Nabavne Cjene za {1}." -#: erpnext/stock/doctype/item/item.py:341 -#: erpnext/stock/doctype/item/item.py:1669 +#: erpnext/stock/doctype/item/item.py:346 +#: erpnext/stock/doctype/item/item.py:1674 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." -msgstr "Postavi Privremeni Početni Račun za {0} kako biste kreirali početno usklađivanje zaliha." +msgstr "Postavi Privremeni Početni Račun za {0} kako biste izradili početno usklađivanje zaliha." -#: erpnext/projects/doctype/project/project.py:807 +#: erpnext/projects/doctype/project/project.py:837 msgid "Please set a default Holiday List for Company {0}" msgstr "Postavi standard Listu Praznika za {0}" @@ -39085,13 +39167,13 @@ msgstr "Postavi Račun u Skladištu {0}" #: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:68 msgid "Please set actual demand or sales forecast to generate Material Requirements Planning Report." -msgstr "Postavi stvarnu potražnju ili prognozu prodaje kako biste generirali Izvještaj o planiranju potreba za materijalom." +msgstr "Postavi stvarnu potražnju ili prognozu prodaje kako biste izradili Izvještaj o planiranju potreba za materijalom." #: erpnext/regional/italy/utils.py:227 msgid "Please set an Address on the Company '{0}'" msgstr "Postavi Adresu Poduzeća '{0}'" -#: erpnext/stock/services/base_stock_gl_composer.py:194 +#: erpnext/stock/services/base_stock_gl_composer.py:261 msgid "Please set an Expense Account in the Items table" msgstr "Postavi Račun Troškova u tabeli Artikala" @@ -39120,7 +39202,7 @@ msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}" msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Načine Plaćanja {0}" -#: erpnext/accounts/utils.py:2568 +#: erpnext/accounts/utils.py:2564 msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "Postavi Standard Račun Rezultata od Kursnih Razlika u {0}" @@ -39132,16 +39214,16 @@ msgstr "Postavi Standard Račun Troškova u {0}" msgid "Please set default UOM in Stock Settings" msgstr "Postavi Standard Jedinicu u Postavkama Zaliha" -#: erpnext/stock/services/base_stock_gl_composer.py:107 +#: erpnext/stock/services/base_stock_gl_composer.py:114 msgid "Please set default cost of goods sold account in company {0} for booking rounding gain and loss during stock transfer" msgstr "Postavi standardni račun troška prodanog proizvoda u {0} za zaokruživanje knjiženja rezultata tokom prijenosa zaliha" #: erpnext/controllers/stock_controller.py:153 msgid "Please set default inventory account for item {0}, or their item group or brand." -msgstr "Molimo postavi standard račun zaliha za artikal {0}, grupu artikla ili marku." +msgstr "Postavi standard račun zaliha za artikal {0}, grupu artikla ili marku." #: erpnext/accounts/doctype/payment_entry/payment_entry.py:279 -#: erpnext/accounts/utils.py:1169 +#: erpnext/accounts/utils.py:1170 msgid "Please set default {0} in Company {1}" msgstr "Postavi Standard {0} u {1}" @@ -39149,7 +39231,7 @@ msgstr "Postavi Standard {0} u {1}" msgid "Please set filter based on Item or Warehouse" msgstr "Postavi filter na osnovu Artikla ili Skladišta" -#: erpnext/controllers/accounts_controller.py:1295 +#: erpnext/controllers/accounts_controller.py:1222 msgid "Please set one of the following:" msgstr "Postavi jedno od sljedećeg:" @@ -39212,11 +39294,16 @@ msgstr "Postavi {0} za adresu {1}" msgid "Please set {0} in BOM Creator {1}" msgstr "Postavi {0} u Konstruktoru Sastavnice {1}" +#: erpnext/controllers/buying_controller.py:347 +#: erpnext/stock/services/base_stock_gl_composer.py:209 +msgid "Please set {0} in Company {1} or in the Item Defaults of Item {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1147 msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss" msgstr "Postavi {0} u {1} kako biste knjižili Rezultat Deviznog Kursa" -#: erpnext/controllers/accounts_controller.py:498 +#: erpnext/controllers/accounts_controller.py:504 msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Postavi {0} na {1}, isti račun koji je korišten u originalnoj fakturi {2}." @@ -39228,7 +39315,7 @@ msgstr "Podesi i omogući grupni račun sa Kontnom Klasom - {0} za {1}" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Podijeli ovu e-poštu sa svojim timom za podršku kako bi mogli pronaći i riješiti problem." -#: erpnext/stock/get_item_details.py:349 +#: erpnext/stock/get_item_details.py:348 msgid "Please specify Company" msgstr "Navedi Poduzeće" @@ -39255,7 +39342,7 @@ msgstr "Navedi barem jedan atribut u tabeli Atributa" msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:92 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:94 msgid "Please specify from/to range" msgstr "Navedi od/Do Raspona" @@ -39267,7 +39354,7 @@ msgstr "Navedi {0}. Potrebno je za preuzimanje Detalja Artikla." msgid "Please submit Purchase Order {0} before proceeding." msgstr "Podnesite Nalog Nabave {0} prije nego što nastavite." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:284 msgid "Please try again in an hour." msgstr "Pokušaj ponovo za sat vremena." @@ -39275,7 +39362,7 @@ msgstr "Pokušaj ponovo za sat vremena." msgid "Please uncheck 'Show in Bucket View' to create Orders" msgstr "Poništi odabir opcije \"Prikaži u Prikazu Spremnika\" kako biste izradili Naloge" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:237 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:240 msgid "Please update Repair Status." msgstr "Ažuriraj Status Popravke." @@ -39452,7 +39539,7 @@ msgstr "Objavljeno" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:16 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:15 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:18 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1140 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1142 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:15 #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:38 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:7 @@ -39460,7 +39547,7 @@ msgstr "Objavljeno" #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 #: erpnext/accounts/report/general_ledger/general_ledger.py:697 -#: erpnext/accounts/report/gross_profit/gross_profit.py:300 +#: erpnext/accounts/report/gross_profit/gross_profit.py:302 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:143 @@ -39553,7 +39640,7 @@ msgstr "Datuma Knjiženja" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:306 +#: erpnext/accounts/report/gross_profit/gross_profit.py:308 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json @@ -39578,7 +39665,7 @@ msgstr "Vrijeme Knjiženja" msgid "Posting date does not match the selected transaction" msgstr "Datum knjiženja ne odgovara odabranoj transakciji" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:101 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:109 msgid "Posting date is required" msgstr "Datum registracije je obavezan" @@ -39653,15 +39740,15 @@ msgstr "Pokreće {0}" msgid "Pre Sales" msgstr "Pretprodaja" -#: erpnext/accounts/utils.py:2806 +#: erpnext/accounts/utils.py:2802 msgid "Pre-Submit Warning" msgstr "Upozorenje prije podnošenja" -#: erpnext/accounts/utils.py:2855 +#: erpnext/accounts/utils.py:2851 msgid "Pre-Submit Warning: Credit Limit" msgstr "Upozorenje prije podnošenja: Kreditno Ograničenje" -#: erpnext/accounts/utils.py:2867 +#: erpnext/accounts/utils.py:2863 msgid "Pre-Submit Warning: Packed Qty" msgstr "Upozorenje prije podnošenja: Pakirana Količina" @@ -39674,11 +39761,6 @@ msgstr "Unaprijed popunjeni unosi plaćanja za ovog klijenta. Mora biti račun p msgid "Preference" msgstr "Prednost" -#: banking/src/components/features/Settings/Preferences.tsx:43 -#: banking/src/components/features/Settings/SettingsDialogContent.tsx:27 -msgid "Preferences" -msgstr "Postavke" - #: banking/src/components/features/Settings/Preferences.tsx:33 msgid "Preferences updated" msgstr "Postavke su ažurirane" @@ -39704,7 +39786,7 @@ msgstr "Unaprijed Plaćeno (faktura na početku perioda)" msgid "Prepaid Expenses" msgstr "Uplaćeni Troškovi" -#: erpnext/public/js/shop_floor/shop_floor.js:1078 +#: erpnext/public/js/shop_floor/shop_floor.js:1114 msgid "Preparing stock entry..." msgstr "Priprema unosa zaliha..." @@ -39778,7 +39860,7 @@ msgstr "Sprečava automatsku rezervaciju količina zaliha iz prodajnih naloga pr #. 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Prevents the system from automatically using the rate from the last purchase transaction when creating new purchase orders or transactions." -msgstr "Sprječava sistem da automatski koristi cijenu iz posljednje transakcije nabave prilikom kreiranja novih naloga nabave ili transakcija nabave." +msgstr "Sprječava sistem da automatski koristi cjenu iz posljednje transakcije nabave prilikom izrade novih naloga nabave ili transakcija nabave." #. Label of the preview (Button) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:267 @@ -39801,7 +39883,7 @@ msgstr "Pregled Transakcija" msgid "Preview mode" msgstr "Način Prikaza" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:201 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Prethodna Finansijska Godina nije zatvorena" @@ -39830,23 +39912,23 @@ msgstr "Prethodna Godina nije zatvorena, prvo je zatvorite" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:228 #: erpnext/selling/page/point_of_sale/pos_item_selector.js:116 msgid "Price" -msgstr "Cijena" +msgstr "Cjena" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:242 msgid "Price ({0})" -msgstr "Cijena ({0})" +msgstr "Cjena ({0})" #. Label of the price_discount_scheme_section (Section Break) field in DocType #. 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Price Discount Scheme" -msgstr "Šema Popusta Cijene" +msgstr "Šema Popusta Cjene" #. Label of the section_break_14 (Section Break) field in DocType 'Promotional #. Scheme' #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json msgid "Price Discount Slabs" -msgstr "Tabele Popusta Cijena" +msgstr "Tabele Popusta Cjena" #. Label of the selling_price_list (Link) field in DocType 'POS Invoice' #. Label of the selling_price_list (Link) field in DocType 'POS Profile' @@ -39904,7 +39986,7 @@ msgstr "Tabele Popusta Cijena" #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/selling.json msgid "Price List" -msgstr "Cijenovnik" +msgstr "Cjenovnik" #. Label of the price_list_and_currency_section (Section Break) field in #. DocType 'POS Profile' @@ -39915,7 +39997,7 @@ msgstr "Cjenovnik & Valuta" #. Name of a DocType #: erpnext/stock/doctype/price_list_country/price_list_country.json msgid "Price List Country" -msgstr "Cijenovnik Zemlje" +msgstr "Cjenovnik Zemlje" #. Label of the price_list_currency (Link) field in DocType 'POS Invoice' #. Label of the price_list_currency (Link) field in DocType 'Purchase Invoice' @@ -39941,17 +40023,17 @@ msgstr "Cijenovnik Zemlje" #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Price List Currency" -msgstr "Valuta Cijenovnika" +msgstr "Valuta Cjenovnika" -#: erpnext/stock/get_item_details.py:1384 +#: erpnext/stock/get_item_details.py:1383 msgid "Price List Currency not selected" -msgstr "Valuta Cijenovnika nije odabrana" +msgstr "Valuta Cjenovnika nije odabrana" #. Label of the price_list_defaults_section (Section Break) field in DocType #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Price List Defaults" -msgstr "Standard Cijenovnika" +msgstr "Standard Cjenovnika" #. Label of the plc_conversion_rate (Float) field in DocType 'POS Invoice' #. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Invoice' @@ -39977,12 +40059,12 @@ msgstr "Standard Cijenovnika" #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Price List Exchange Rate" -msgstr "Devizni Kurs Cijenovnika" +msgstr "Devizni Kurs Cjenovnika" #. Label of the price_list_name (Data) field in DocType 'Price List' #: erpnext/stock/doctype/price_list/price_list.json msgid "Price List Name" -msgstr "Naziv Cijenovnika" +msgstr "Naziv Cjenovnika" #. Label of the price_list_rate (Currency) field in DocType 'POS Invoice Item' #. Label of the price_list_rate (Currency) field in DocType 'Purchase Invoice @@ -40015,7 +40097,7 @@ msgstr "Naziv Cijenovnika" #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Price List Rate" -msgstr "Cijena Cijenovnika" +msgstr "Cjena Cjenovnika" #. Label of the base_price_list_rate (Currency) field in DocType 'POS Invoice #. Item' @@ -40045,51 +40127,51 @@ msgstr "Cijena Cijenovnika" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Price List Rate (Company Currency)" -msgstr "Cijena Cijenovnika (Valuta Poduzeća)" +msgstr "Cjena Cjenovnika (Valuta Poduzeća)" #: erpnext/stock/doctype/price_list/price_list.py:33 msgid "Price List must be applicable for Buying or Selling" -msgstr "Cijenovnik mora biti primenljiv za Nabavu ili Prodaju" +msgstr "Cjenovnik mora biti primenljiv za Nabavu ili Prodaju" #: erpnext/stock/doctype/price_list/price_list.py:88 msgid "Price List {0} is disabled or does not exist" -msgstr "Cijenovnik {0} je onemogućen ili ne postoji" +msgstr "Cjenovnik {0} je onemogućen ili ne postoji" #. Label of the price_not_uom_dependent (Check) field in DocType 'Price List' #: erpnext/stock/doctype/price_list/price_list.json msgid "Price Not UOM Dependent" -msgstr "Cijena ne ovisi o Jedinici" +msgstr "Cjena ne ovisi o Jedinici" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:249 msgid "Price Per Unit ({0})" -msgstr "Cijena po Jedinici ({0})" +msgstr "Cjena po Jedinici ({0})" #: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." -msgstr "Cijena nije određena za artikal." +msgstr "Cjena nije određena za artikal." #: erpnext/manufacturing/doctype/bom/services/costing.py:59 msgid "Price not found for item {0} in price list {1}" -msgstr "Cijena nije pronađena za artikal {0} u cjenovniku {1}" +msgstr "Cjena nije pronađena za artikal {0} u cjenovniku {1}" #. Label of the price_or_product_discount (Select) field in DocType 'Pricing #. Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Price or Product Discount" -msgstr "Cijena ili Popust na Artikal" +msgstr "Cjena ili Popust na Artikal" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:149 msgid "Price or product discount slabs are required" -msgstr "Tabele sa Cijenama ili Popustom su obevezne" +msgstr "Tabele sa Cjenama ili Popustom su obevezne" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:235 msgid "Price per Unit (Stock UOM)" -msgstr "Cijena po Jedinici (Jedinica Zaliha)" +msgstr "Cjena po Jedinici (Jedinica Zaliha)" #. Label of the prices_html (HTML) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Prices HTML" -msgstr "Cijene HTML" +msgstr "Cjene HTML" #. Label of the pricing_tab (Tab Break) field in DocType 'Buying Settings' #. Label of the item_price_tab (Tab Break) field in DocType 'Selling Settings' @@ -40101,7 +40183,7 @@ msgstr "Cijene HTML" #: erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item_dashboard.py:19 msgid "Pricing" -msgstr "Određivanje Cijena" +msgstr "Određivanje Cjena" #. Label of the pricing_rule (Link) field in DocType 'Coupon Code' #. Name of a DocType @@ -40118,14 +40200,14 @@ msgstr "Određivanje Cijena" #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/selling.json msgid "Pricing Rule" -msgstr "Pravilo Određivanja Cijena" +msgstr "Pravilo Određivanja Cjena" #. Name of a DocType #. Label of the brands (Table) field in DocType 'Promotional Scheme' #: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json msgid "Pricing Rule Brand" -msgstr "Brend Pravila Određivanja Cijena" +msgstr "Brend Pravila Određivanja Cjena" #. Label of the pricing_rules (Table) field in DocType 'POS Invoice' #. Name of a DocType @@ -40146,38 +40228,38 @@ msgstr "Brend Pravila Određivanja Cijena" #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Pricing Rule Detail" -msgstr "Detalji Pravila Određivanja Cijena" +msgstr "Detalji Pravila Određivanja Cjena" #. Label of the pricing_rule_help (HTML) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Pricing Rule Help" -msgstr "Pomoć Pravila Određivanja Cijena" +msgstr "Pomoć Pravila Određivanja Cjena" #. Name of a DocType #. Label of the items (Table) field in DocType 'Promotional Scheme' #: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json msgid "Pricing Rule Item Code" -msgstr "Kod Artikla Pravila Određivanja Cijena" +msgstr "Kod Artikla Pravila Određivanja Cjena" #. Name of a DocType #. Label of the item_groups (Table) field in DocType 'Promotional Scheme' #: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json msgid "Pricing Rule Item Group" -msgstr "Grupa Artikal Pravila Određivanja Cijena" +msgstr "Grupa Artikal Pravila Određivanja Cjena" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:71 msgid "Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand." -msgstr "Cijenovno Pravilo se prvo bira na osnovu polja 'Primijeni na', koje može biti Artikal, Grupa Artikla ili Marka." +msgstr "Cjenovno Pravilo se prvo bira na osnovu polja 'Primijeni na', koje može biti Artikal, Grupa Artikla ili Marka." #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:48 msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." -msgstr "Cijenovno Pravilo je napravljeno da zamjeni cijenovnik / definiše procenat popusta, na osnovu određenih kriterija." +msgstr "Cjenovno Pravilo je napravljeno da zamjeni cjenovnik / definiše procenat popusta, na osnovu određenih kriterija." #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" -msgstr "Pravilo Određivanja Cijena {0} je ažurirano" +msgstr "Pravilo Određivanja Cjena {0} je ažurirano" #. Label of the pricing_rule_details (Section Break) field in DocType 'POS #. Invoice' @@ -40231,11 +40313,11 @@ msgstr "Pravilo Određivanja Cijena {0} je ažurirano" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Pricing Rules" -msgstr "Pravila Određivanja Cijena" +msgstr "Pravila Određivanja Cjena" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:79 msgid "Pricing Rules are further filtered based on quantity." -msgstr "Cijenovna Pravila se dalje filtriraju na osnovu količine." +msgstr "Cjenovna Pravila se dalje filtriraju na osnovu količine." #: erpnext/public/js/utils/contact_address_quick_entry.js:73 msgid "Primary Address Details" @@ -40386,11 +40468,11 @@ msgstr "Prioriteti" msgid "Priority cannot be less than 1." msgstr "Prioritet ne može biti manji od 1." -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:767 msgid "Priority has been changed to {0}." msgstr "Prioritet je promijenjen u {0}." -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:179 msgid "Priority is mandatory" msgstr "Prioritet je Obavezan" @@ -40459,7 +40541,7 @@ msgstr "Procesni Gubitak %" #: erpnext/manufacturing/doctype/bom/bom.py:976 msgid "Process Loss Percentage cannot be greater than 100" -msgstr "Procentualni Gubitka Procesa ne može biti veći od 100" +msgstr "Postotni Gubitak Procesa ne može biti veći od 100" #. Label of the process_loss_qty (Float) field in DocType 'BOM' #. Label of the process_loss_qty (Float) field in DocType 'BOM Secondary Item' @@ -40485,7 +40567,7 @@ msgid "Process Loss Qty" msgstr "Količinski Gubitak Procesa" #: erpnext/manufacturing/doctype/job_card/job_card.js:288 -#: erpnext/public/js/shop_floor/shop_floor.js:798 +#: erpnext/public/js/shop_floor/shop_floor.js:834 msgid "Process Loss Quantity" msgstr "Količinski Gubitak Procesa" @@ -40514,7 +40596,6 @@ msgstr "Puno ime Odgovornog Obrade" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json -#: erpnext/workspace_sidebar/banking.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Process Payment Reconciliation" @@ -40533,12 +40614,12 @@ msgstr "Dodjele Zapisnika Obrade Usaglašavanja Plaćanja" #. Name of a DocType #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json msgid "Process Period Closing Voucher" -msgstr "Obradi Verifikat Zatvaranja Razdoblja" +msgstr "Obradi Verifikat Zatvaranja Perioda" #. Name of a DocType #: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json msgid "Process Period Closing Voucher Detail" -msgstr "Detalji Obrade Verifikata Zatvaranje Razdoblja" +msgstr "Detalji Obrade Verifikata Zatvaranje Perioda" #. Name of a DocType #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json @@ -40767,13 +40848,13 @@ msgstr "Upravitelj Proizvodnje" #. Label of the product_price_id (Data) field in DocType 'Subscription Plan' #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json msgid "Product Price ID" -msgstr "ID Cijene Proizvoda" +msgstr "ID Cjene Proizvoda" #. Option for the 'Status' (Select) field in DocType 'Workstation' #. Label of a Card Break in the Manufacturing Workspace #: erpnext/manufacturing/doctype/workstation/workstation.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/setup/doctype/company/company.py:543 +#: erpnext/setup/doctype/company/company.py:545 msgid "Production" msgstr "Proizvodnja" @@ -40838,7 +40919,7 @@ msgstr "Informacije o Proizvodnom Artiklu" msgid "Production Plan" msgstr "Plan Proizvodnje" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:169 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:192 msgid "Production Plan Already Submitted" msgstr "Plan Proizvodnje je Podnešen" @@ -40897,7 +40978,7 @@ msgid "Production Plan Sub Assembly Item" msgstr "Artikal Podsklopa Plana Proizvodnje" #. Name of a report -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:110 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:136 #: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.json msgid "Production Plan Summary" msgstr "Sažetak Plana Proizvodnje" @@ -40920,21 +41001,23 @@ msgstr "Proizvodi" msgid "Profit & Loss" msgstr "Rezultat" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Profit This Year" msgstr "Rezultat ove Godine" #. Option for the 'Report Type' (Select) field in DocType 'Account' #. Option for the 'Report Type' (Select) field in DocType 'Process Period #. Closing Voucher Detail' +#. Label of a chart in the Accounting Workspace #. Label of a chart in the Financial Reports Workspace #. Label of a chart in the Invoicing Workspace #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/financial_statements.js:343 +#: erpnext/public/js/financial_statements.js:368 #: erpnext/workspace_sidebar/financial_reports.json msgid "Profit and Loss" msgstr "Rezultat" @@ -40949,7 +41032,7 @@ msgstr "Rezultat" msgid "Profit and Loss Statement" msgstr "Bilans Uspjeha" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:229 msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" msgstr "Bilansa Uspjeha zahtijeva da se {0} sinhronizira s DuckDB-om" @@ -40961,8 +41044,8 @@ msgstr "Bilansa Uspjeha zahtijeva da se {0} sinhronizira s DuckDB-om" msgid "Profit and Loss Summary" msgstr "Sažetak Rezultata" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:162 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:163 msgid "Profit for the year" msgstr "Rezultat za Godinu" @@ -40991,7 +41074,7 @@ msgstr "% napretka za zadatak ne može biti veći od 100." msgid "Progress (%)" msgstr "Napredak (%)" -#: erpnext/projects/doctype/project/project.py:432 +#: erpnext/projects/doctype/project/project.py:434 msgid "Project Collaboration Invitation" msgstr "Poziv na Projektnu Saradnju" @@ -41039,7 +41122,7 @@ msgstr "Status Projekta" msgid "Project Summary" msgstr "Sažetak Projekta" -#: erpnext/projects/doctype/project/project.py:745 +#: erpnext/projects/doctype/project/project.py:775 msgid "Project Summary for {0}" msgstr "Sažetak Projekta za {0}" @@ -41050,12 +41133,12 @@ msgstr "Sažetak Projekta za {0}" #: erpnext/projects/workspace/projects/projects.json #: erpnext/workspace_sidebar/projects.json msgid "Project Template" -msgstr "Šablon Projekta" +msgstr "Predložak Projekta" #. Name of a DocType #: erpnext/projects/doctype/project_template_task/project_template_task.json msgid "Project Template Task" -msgstr "Zadatak Šablona Projekta" +msgstr "Zadatak Predloška Projekta" #. Label of the project_type (Link) field in DocType 'Project' #. Label of the project_type (Link) field in DocType 'Project Template' @@ -41119,7 +41202,7 @@ msgstr "Projektno Praćenje Zaliha" msgid "Project wise Stock Tracking " msgstr "Projektno Praćenje Zaliha " -#: erpnext/controllers/trends.py:460 +#: erpnext/controllers/trends.py:561 msgid "Project-wise data is not available for Quotation" msgstr "Projektni Podaci nisu dostupni za Ponudu" @@ -41157,7 +41240,7 @@ msgstr "Očekivana Količina" msgid "Projected Quantity" msgstr "Predviđena Količina" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:184 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:210 msgid "Projected Quantity Formula" msgstr "Formula Predviđene Količine" @@ -41170,7 +41253,7 @@ msgstr "Predviđena Količina" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:512 +#: erpnext/projects/doctype/project/project.py:542 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -41242,7 +41325,7 @@ msgstr "Promotivna Šema Id" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json #: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json msgid "Promotional Scheme Price Discount" -msgstr "Popust u Cijeni Promotivne Šeme" +msgstr "Popust u Cjeni Promotivne Šeme" #. Label of the product_discount_slabs (Table) field in DocType 'Promotional #. Scheme' @@ -41264,7 +41347,7 @@ msgstr "Pisanje Ponude" #: erpnext/setup/setup_wizard/data/sales_stage.txt:7 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:443 msgid "Proposal/Price Quote" -msgstr "Ponuda/Cijena" +msgstr "Ponuda/Cjena" #. Label of the prorate (Check) field in DocType 'Subscription Settings' #: erpnext/accounts/doctype/subscription_settings/subscription_settings.json @@ -41323,7 +41406,7 @@ msgstr "Zaštićeni DocType" #. Description of the 'Company Email' (Data) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Provide Email Address registered in company" -msgstr "Navedi adresu e-špšte registrovanu u Poduzeću" +msgstr "Navedi Adresu E-pošte registrovanu u Poduzeću" #. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank #. Guarantee' @@ -41331,7 +41414,7 @@ msgstr "Navedi adresu e-špšte registrovanu u Poduzeću" msgid "Providing" msgstr "Odredbe" -#: erpnext/setup/doctype/company/company.py:642 +#: erpnext/setup/doctype/company/company.py:644 msgid "Provisional Account" msgstr "Privremeni Račun" @@ -41349,9 +41432,9 @@ msgstr "Privremeni Račun (Usluga)" msgid "Provisional Expense Account" msgstr "Račun Privremenih Troškova" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:178 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:179 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:247 msgid "Provisional Profit / Loss (Credit)" msgstr "Privremeni Rezultat (Kredit)" @@ -41411,7 +41494,7 @@ msgstr "Izdavaštvo" #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json #: erpnext/projects/doctype/project/project_dashboard.py:16 -#: erpnext/setup/doctype/company/company.py:531 erpnext/setup/install.py:413 +#: erpnext/setup/doctype/company/company.py:533 erpnext/setup/install.py:413 #: erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item_list.js:30 #: erpnext/stock/doctype/item_lead_time/item_lead_time.json @@ -41486,8 +41569,8 @@ msgstr "Račun Troškova Nabave" msgid "Purchase Expense Contra Account" msgstr "Kontraračun Troškova Nabave" -#: erpnext/controllers/buying_controller.py:365 -#: erpnext/controllers/buying_controller.py:379 +#: erpnext/controllers/buying_controller.py:373 +#: erpnext/controllers/buying_controller.py:387 msgid "Purchase Expense for Item {0}" msgstr "Trošak Nabave Artikla {0}" @@ -41534,7 +41617,7 @@ msgstr "Trošak Nabave Artikla {0}" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:30 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:446 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:445 #: erpnext/workspace_sidebar/buying.json #: erpnext/workspace_sidebar/invoicing.json msgid "Purchase Invoice" @@ -41606,7 +41689,6 @@ msgstr "Nabavne Fakture" #. Label of the purchase_order (Link) field in DocType 'Stock Entry' #. Label of the purchase_order (Link) field in DocType 'Subcontracting Receipt #. Item' -#. Label of a Link in the Subcontracting Workspace #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:61 #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json @@ -41625,7 +41707,7 @@ msgstr "Nabavne Fakture" #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/buying_controller.py:929 +#: erpnext/controllers/buying_controller.py:937 #: erpnext/crm/doctype/contract/contract.json #: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:54 #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json @@ -41634,14 +41716,12 @@ msgstr "Nabavne Fakture" #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/setup/doctype/authorization_rule/authorization_rule.json #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json -#: erpnext/stock/doctype/material_request/material_request.js:196 +#: erpnext/stock/doctype/material_request/material_request.js:199 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:217 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json #: erpnext/workspace_sidebar/buying.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Purchase Order" msgstr "Nabavni Nalog" @@ -41706,7 +41786,7 @@ msgstr "Artikli Nabavnog Naloga nisu primljeni na vrijeme" #. Label of the pricing_rules (Table) field in DocType 'Purchase Order' #: erpnext/buying/doctype/purchase_order/purchase_order.json msgid "Purchase Order Pricing Rule" -msgstr "Pravilo određivanja cijene Nabavnog Naloga" +msgstr "Pravilo određivanja cjene Nabavnog Naloga" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:471 msgid "Purchase Order Required" @@ -41728,7 +41808,7 @@ msgstr "Statistika Nabavnog Naloga" #: erpnext/selling/doctype/sales_order/sales_order.js:1670 msgid "Purchase Order already created for all Sales Order items" -msgstr "Nabavni Nalog je kreiran za sve artikle Prodajnog Naloga" +msgstr "Nabavni Nalog je izrađen za sve artikle Prodajnog Naloga" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:319 msgid "Purchase Order number required for Item {0}" @@ -41742,7 +41822,7 @@ msgstr "Nabavni Nalog {0} je izrađen" msgid "Purchase Order {0} is not submitted" msgstr "Nabavni Nalog {0} nije podnešen" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:582 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:583 msgid "Purchase Orders" msgstr "Nabavni Nalozi" @@ -41757,7 +41837,7 @@ msgstr "Broj Nabavnih Naloga" msgid "Purchase Orders Items Overdue" msgstr "Nabavni Nalozi Kasne" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:277 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:278 msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}." msgstr "Nabavni Nalozi nisu dozvoljeni za {0} zbog bodovne tablice {1}." @@ -41772,23 +41852,23 @@ msgstr "Nabavni Nalozi za Fakturisanje" msgid "Purchase Orders to Receive" msgstr "Nabavni Nalozi za Prijem" -#: erpnext/controllers/accounts_controller.py:1235 +#: erpnext/controllers/accounts_controller.py:1162 msgid "Purchase Orders {0} are unlinked" msgstr "Nabavni Nalozi {0} nisu povezani" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" -msgstr "Nabavni Cijenovnik" +msgstr "Nabavni Cjenovnik" #. Label of the purchase_price_variance_account (Link) field in DocType 'Item #. Default' #: erpnext/stock/doctype/item_default/item_default.json msgid "Purchase Price Variance Account" -msgstr "Račun Odstupanja Nabavne Cijene" +msgstr "Račun Odstupanja Nabavne Cjene" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:93 msgid "Purchase Price Variance for {0}" -msgstr "Odstupanje Nabavne Cijene za {0}" +msgstr "Odstupanje Nabavne Cjene za {0}" #. Label of the purchase_receipt (Link) field in DocType 'Purchase Invoice #. Item' @@ -41825,7 +41905,7 @@ msgstr "Odstupanje Nabavne Cijene za {0}" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:151 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 #: erpnext/stock/workspace/stock/stock.json #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:68 #: erpnext/workspace_sidebar/stock.json @@ -41836,7 +41916,7 @@ msgstr "Nabavni Račun" #. 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Purchase Receipt (Draft) will be auto-created on submission of Subcontracting Receipt." -msgstr "Nabavni Račun (nacrt) će se automatski kreirati pri podnošenju Podizvođačkog Računa." +msgstr "Nabavni Račun (nacrt) će se automatski izraditi pri podnošenju Podizvođačkog Računa." #. Label of the pr_detail (Data) field in DocType 'Purchase Invoice Item' #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -41898,7 +41978,7 @@ msgstr "Nabavni Račun nema nijedan artikal za koju je omogućeno Zadržavanje U #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:137 msgid "Purchase Receipt {0} created." -msgstr "Nabavni Račun {0} je kreiran." +msgstr "Nabavni Račun {0} je izrađen." #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:533 msgid "Purchase Receipt {0} is not submitted" @@ -41916,12 +41996,10 @@ msgid "Purchase Return" msgstr "Povrat Nabave" #. Label of the purchase_tax_template (Link) field in DocType 'Tax Rule' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/setup/doctype/company/company.js:161 -#: erpnext/workspace_sidebar/taxes.json msgid "Purchase Tax Template" -msgstr "Šablon Nabavnog PDV-a" +msgstr "Predložak Nabavnog PDV-a" #. Label of the purchase_tax_withholding_category (Link) field in DocType #. 'Item' @@ -41965,7 +42043,7 @@ msgstr "Nabavni PDV i Naknade" #: erpnext/buying/workspace/buying/buying.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Purchase Taxes and Charges Template" -msgstr "Šablon Nabavnog PDV-a i Naknade" +msgstr "Predložak Nabavnog PDV-a i Naknade" #. Label of the purchase_time (Int) field in DocType 'Item Lead Time' #. Label of the purchase_lead_time_tab (Tab Break) field in DocType 'Item Lead @@ -41974,15 +42052,15 @@ msgstr "Šablon Nabavnog PDV-a i Naknade" msgid "Purchase Time" msgstr "Vrijeme Nabave" -#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:57 +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:62 msgid "Purchase Value" msgstr "Nabavna Vrijednost" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:35 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:45 msgid "Purchase Voucher No" msgstr "Broj Nabavnog Verifikata" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:29 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:39 msgid "Purchase Voucher Type" msgstr "Tip Nabavnog Verifikata" @@ -42019,7 +42097,7 @@ msgstr "Nabava" #: erpnext/stock/doctype/item/item_list.js:41 #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:481 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:480 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json @@ -42064,19 +42142,19 @@ msgstr "K3" msgid "Q4" msgstr "K4" -#: erpnext/public/js/templates/shop_floor_template.html:743 +#: erpnext/public/js/templates/shop_floor_template.html:763 msgid "QC Available" msgstr "Kontrola Kvalitete Dostupna" -#: erpnext/public/js/templates/shop_floor_template.html:737 +#: erpnext/public/js/templates/shop_floor_template.html:757 msgid "QC Passed" msgstr "Kontrola Kvalitete Prošla" -#: erpnext/public/js/templates/shop_floor_template.html:739 +#: erpnext/public/js/templates/shop_floor_template.html:759 msgid "QC Rejected" msgstr "Kontrola Kvaliteta Odbijena" -#: erpnext/public/js/templates/shop_floor_template.html:741 +#: erpnext/public/js/templates/shop_floor_template.html:761 msgid "QC Required" msgstr "Kontrola Kvalitete Obavezna" @@ -42113,14 +42191,14 @@ msgstr "Kontrola Kvalitete Obavezna" #. DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:345 +#: erpnext/accounts/report/gross_profit/gross_profit.py:347 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:242 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:226 -#: erpnext/controllers/trends.py:290 erpnext/controllers/trends.py:302 -#: erpnext/controllers/trends.py:307 +#: erpnext/controllers/trends.py:300 erpnext/controllers/trends.py:312 +#: erpnext/controllers/trends.py:317 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json -#: erpnext/manufacturing/doctype/bom/bom.js:1108 +#: erpnext/manufacturing/doctype/bom/bom.js:1112 #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json @@ -42137,7 +42215,7 @@ msgstr "Kontrola Kvalitete Obavezna" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:894 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -42238,7 +42316,7 @@ msgstr "Promjena Količine" msgid "Qty Consumed Per Unit" msgstr "Potrošena Količina po Jedinici" -#: erpnext/public/js/templates/shop_floor_template.html:868 +#: erpnext/public/js/templates/shop_floor_template.html:888 msgid "Qty Done" msgstr "Završena Količina" @@ -42262,13 +42340,13 @@ msgstr "Količina po Jedinici" msgid "Qty To Manufacture" msgstr "Količina za Proizvodnju" -#: erpnext/manufacturing/doctype/work_order/work_order.py:873 +#: erpnext/manufacturing/doctype/work_order/work_order.py:879 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Količina za Proizvodnju ({0}) ne može biti razlomak za Jedinicu {2}. Da biste to omogućili, onemogući '{1}' u Jedinici {2}." #: erpnext/manufacturing/doctype/job_card/job_card.py:269 msgid "Qty To Manufacture in the job card cannot be greater than Qty To Manufacture in the work order for the operation {0}.
Solution: Either you can reduce the Qty To Manufacture in the job card or set the 'Overproduction Percentage For Work Order' in the {1}." -msgstr "Količina za proizvodnju u radnom nalogu ne može biti veća od količine za proizvodnju u radnom nalogu za operaciju {0}.
Rješenje: Možete ili smanjiti količinu za proizvodnju u radnom nalogu ili postaviti 'Procenat prekomjerne proizvodnje za radni nalog' u {1}." +msgstr "Količina za proizvodnju u radnom nalogu ne može biti veća od količine za proizvodnju u radnom nalogu za radnju {0}.
Rješenje: Možete ili smanjiti količinu za proizvodnju u radnom nalogu ili postaviti 'Procenat prekomjerne proizvodnje za radni nalog' u {1}." #. Label of the qty_to_produce (Float) field in DocType 'Batch' #: erpnext/stock/doctype/batch/batch.json @@ -42283,7 +42361,7 @@ msgstr "Količinski Dijagram" #. Capitalization Service Item' #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json msgid "Qty and Rate" -msgstr "Količina i Cijena" +msgstr "Količina i Cjena" #. Label of the tracking_section (Section Break) field in DocType 'Purchase #. Receipt Item' @@ -42317,8 +42395,8 @@ msgstr "Količina po Jedinici Zaliha" msgid "Qty for which recursion isn't applicable." msgstr "Količina za koju rekurzija nije primjenjiva." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1066 -#: erpnext/manufacturing/doctype/work_order/work_order.js:1089 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1070 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1093 msgid "Qty for {0}" msgstr "Količina za {0}" @@ -42336,7 +42414,7 @@ msgstr "Količina u Jedinici Zaliha" msgid "Qty of Finished Goods Item" msgstr "Količina Artikla Gotovog Proizvoda" -#: erpnext/stock/doctype/pick_list/pick_list.py:707 +#: erpnext/stock/doctype/pick_list/pick_list.py:716 msgid "Qty of Finished Goods Item should be greater than 0." msgstr "Količina Gotovog Proizvoda treba da bude veća od 0." @@ -42365,7 +42443,7 @@ msgstr "Količina za Proizvodnju" msgid "Qty to Deliver" msgstr "Količina za Dostavu" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:401 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:400 msgid "Qty to Disassemble" msgstr "Količina za Demontažu" @@ -42375,7 +42453,7 @@ msgstr "Količina za Preuzeti" #: erpnext/manufacturing/doctype/job_card/job_card.js:246 #: erpnext/manufacturing/doctype/job_card/job_card.py:963 -#: erpnext/public/js/shop_floor/shop_floor.js:756 +#: erpnext/public/js/shop_floor/shop_floor.js:792 msgid "Qty to Manufacture" msgstr "Količina za Proizvodnju" @@ -42459,7 +42537,7 @@ msgstr "Radnja Kvaliteta" msgid "Quality Action Resolution" msgstr "Rezolucija Akcije Kvaliteta" -#: erpnext/public/js/shop_floor/shop_floor.js:957 +#: erpnext/public/js/shop_floor/shop_floor.js:993 msgid "Quality Check" msgstr "Provjera Kvalitete" @@ -42485,12 +42563,12 @@ msgstr "Parametar Povratne Informacije Kvaliteta" #: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json #: erpnext/quality_management/workspace/quality/quality.json msgid "Quality Feedback Template" -msgstr "Šablon Povratne Informacije Kvaliteta" +msgstr "Predložak Povratne Informacije Kvaliteta" #. Name of a DocType #: erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.json msgid "Quality Feedback Template Parameter" -msgstr "Parametar Šablona Povratne Informacije Kvaliteta" +msgstr "Parametar Predloška Povratne Informacije Kvaliteta" #. Name of a DocType #. Label of a Link in the Quality Workspace @@ -42605,9 +42683,9 @@ msgstr "Sažetak Kontrole Kvaliteta" #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json msgid "Quality Inspection Template" -msgstr "Šablon Inspekciju Kvaliteta" +msgstr "Predložak Inspekciju Kvaliteta" -#: erpnext/public/js/shop_floor/shop_floor.js:907 +#: erpnext/public/js/shop_floor/shop_floor.js:943 msgid "Quality Inspection Template Missing" msgstr "Nedostaje Predložak Kontrole Kvaliteta" @@ -42615,13 +42693,13 @@ msgstr "Nedostaje Predložak Kontrole Kvaliteta" #. 'Quality Inspection Template' #: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json msgid "Quality Inspection Template Name" -msgstr "Naziv Šablona Kontrole Kvaliteta" +msgstr "Naziv Predloška Kontrole Kvaliteta" #: erpnext/manufacturing/doctype/job_card/job_card.py:858 msgid "Quality Inspection is required for the item {0} before completing the job card {1}" msgstr "Kontrola kvaliteta je obavezna za artikal {0} prije popunjavanja radne kartice {1}" -#: erpnext/public/js/shop_floor/shop_floor.js:1004 +#: erpnext/public/js/shop_floor/shop_floor.js:1040 msgid "Quality Inspection {0} is Rejected. Resolve the issue or follow your rejection process before submitting the job card." msgstr "Kontrola Kvalitete {0} je odbijena. Riješite problem ili slijedite postupak odbijanja prije podnošenja radne kartice." @@ -42634,7 +42712,7 @@ msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Kontrola kvalitete {0} je odbijena za artikal: {1}" #: erpnext/public/js/controllers/transaction.js:446 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:212 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:211 msgid "Quality Inspection(s)" msgstr "Kontrola Kvaliteta" @@ -42643,7 +42721,7 @@ msgstr "Kontrola Kvaliteta" msgid "Quality Inspections" msgstr "Kontrola Kvalitete" -#: erpnext/setup/doctype/company/company.py:573 +#: erpnext/setup/doctype/company/company.py:575 msgid "Quality Management" msgstr "Upravljanje Kvalitetom" @@ -42786,11 +42864,11 @@ msgstr "Količine su uspješno ažurirane." #: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:39 #: erpnext/stock/dashboard/item_dashboard.js:248 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json -#: erpnext/stock/doctype/material_request/material_request.js:368 +#: erpnext/stock/doctype/material_request/material_request.js:369 #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:829 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:828 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:36 @@ -42892,7 +42970,7 @@ msgstr "Količina i Opis" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json msgid "Quantity and Rate" -msgstr "Količina i Cijena" +msgstr "Količina i Cjena" #. Label of the quantity_and_warehouse (Section Break) field in DocType #. 'Material Request Item' @@ -42900,7 +42978,7 @@ msgstr "Količina i Cijena" msgid "Quantity and Warehouse" msgstr "Količina i Skladište" -#: erpnext/stock/doctype/material_request/material_request.py:214 +#: erpnext/stock/doctype/material_request/material_request.py:253 msgid "Quantity cannot be greater than {0} for Item {1}" msgstr "Količina ne može biti veća od {0} za artikal {1}" @@ -42916,7 +42994,7 @@ msgstr "Količina je obavezna" msgid "Quantity must be greater than zero" msgstr "Količina mora biti veća od nule" -#: erpnext/stock/doctype/item/item.py:1649 +#: erpnext/stock/doctype/item/item.py:1654 msgid "Quantity must be greater than zero." msgstr "Količina mora biti veća od nule." @@ -42924,7 +43002,7 @@ msgstr "Količina mora biti veća od nule." msgid "Quantity must be less than or equal to {0}" msgstr "Količina mora biti manja ili jednaka {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1119 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1123 #: erpnext/stock/doctype/pick_list/pick_list.js:214 msgid "Quantity must not be more than {0}" msgstr "Količina ne smije biti veća od {0}" @@ -42945,17 +43023,17 @@ msgstr "Količina za Proizvodnju" #: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" -msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}" +msgstr "Količina za proizvodnju ne može biti nula za radnju {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:865 +#: erpnext/manufacturing/doctype/work_order/work_order.py:871 msgid "Quantity to Manufacture must be greater than 0." msgstr "Količina za Proizvodnju mora biti veća od 0." -#: erpnext/public/js/utils/barcode_scanner.js:257 +#: erpnext/public/js/utils/barcode_scanner.js:262 msgid "Quantity to Scan" msgstr "Količina za Skeniranje" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:919 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:932 msgid "Quantity {0} should not be greater than allowed quantity {1}" msgstr "Količina {0} ne smije biti veća od dozvoljene količine {1}" @@ -42984,7 +43062,7 @@ msgstr "Četvrtina {0} {1}" msgid "Query Route String" msgstr "Niz Rute Upita" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:200 msgid "Queue Size should be between 5 and 100" msgstr "Veličina Reda čekanja treba biti između 5 i 100" @@ -43120,7 +43198,7 @@ msgstr "Ponude: " msgid "Quote Status" msgstr "Status Ponude" -#: erpnext/selling/report/quotation_trends/quotation_trends.py:57 +#: erpnext/selling/report/quotation_trends/quotation_trends.py:62 msgid "Quoted Amount" msgstr "Navedeni Iznos" @@ -43224,7 +43302,7 @@ msgstr "Podigao (e-pošta)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:892 +#: erpnext/public/js/utils.js:904 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -43250,12 +43328,12 @@ msgstr "Podigao (e-pošta)" #: erpnext/templates/form_grid/item_grid.html:8 #: erpnext/templates/pages/order.html:100 erpnext/templates/pages/rfq.html:43 msgid "Rate" -msgstr "Cijena" +msgstr "Cjena" #. Label of the rate_amount_section (Section Break) field in DocType 'BOM Item' #: erpnext/manufacturing/doctype/bom_item/bom_item.json msgid "Rate & Amount" -msgstr "Cijena & Iznos" +msgstr "Cjena & Iznos" #. Label of the base_rate (Currency) field in DocType 'POS Invoice Item' #. Label of the base_rate (Currency) field in DocType 'Purchase Invoice Item' @@ -43276,14 +43354,14 @@ msgstr "Cijena & Iznos" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Rate (Company Currency)" -msgstr "Cijena (Valuta Poduzeća)" +msgstr "Cjena (Valuta Poduzeća)" #. Label of the rm_cost_as_per (Select) field in DocType 'BOM' #. Label of the rm_cost_as_per (Select) field in DocType 'BOM Creator' #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json msgid "Rate Of Materials Based On" -msgstr "Cijena Materijala na osnovu" +msgstr "Cjena Materijala na osnovu" #. Label of the rate (Percent) field in DocType 'Lower Deduction Certificate' #: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json @@ -43294,7 +43372,7 @@ msgstr "Stopa PDV-a po odbitku prema certifikatu" #. Batch Entry' #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json msgid "Rate Section" -msgstr "Sekcija Cijena" +msgstr "Sekcija Cjena" #. Label of the rate_with_margin (Currency) field in DocType 'POS Invoice Item' #. Label of the rate_with_margin (Currency) field in DocType 'Purchase Invoice @@ -43321,7 +43399,7 @@ msgstr "Sekcija Cijena" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Rate With Margin" -msgstr "Cijena s Maržom" +msgstr "Cjena s Maržom" #. Label of the base_rate_with_margin (Currency) field in DocType 'POS Invoice #. Item' @@ -43348,7 +43426,7 @@ msgstr "Cijena s Maržom" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Rate With Margin (Company Currency)" -msgstr "Cijena s Maržom (Valuta Poduzeća)" +msgstr "Cjena s Maržom (Valuta Poduzeća)" #. Label of the rate_and_amount (Section Break) field in DocType 'Purchase #. Receipt Item' @@ -43357,7 +43435,7 @@ msgstr "Cijena s Maržom (Valuta Poduzeća)" #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Rate and Amount" -msgstr "Cijena i Iznos" +msgstr "Cjena i Iznos" #. Description of the 'Exchange Rate' (Float) field in DocType 'POS Invoice' #. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Invoice' @@ -43376,7 +43454,7 @@ msgstr "Stopa po kojoj se Valuta Klijenta pretvara u osnovnu valutu klijenta" #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "Rate at which Price list currency is converted to company's base currency" -msgstr "Stopa po kojoj se Valuta Cijenovnika pretvara u osnovnu valutu poduzeća" +msgstr "Stopa po kojoj se Valuta Cjenovnika pretvara u osnovnu valutu poduzeća" #. Description of the 'Price List Exchange Rate' (Float) field in DocType 'POS #. Invoice' @@ -43409,7 +43487,7 @@ msgstr "PDV Stopa" #: erpnext/accounts/services/child_item_update.py:515 msgid "Rate of '{0}' items cannot be changed" -msgstr "Cijena '{0}' artikala ne može se mijenjati" +msgstr "Cjena '{0}' artikala ne može se mijenjati" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43448,18 +43526,18 @@ msgstr "Godišnja Kamatna Stopa (%)" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Rate of Stock UOM" -msgstr "Cijena Jedinice Zaliha" +msgstr "Cjena Jedinice Zaliha" #. Label of the rate_or_discount (Select) field in DocType 'Pricing Rule' #. Label of the rate_or_discount (Data) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json msgid "Rate or Discount" -msgstr "Cijena ili Popust" +msgstr "Cjena ili Popust" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:184 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:202 msgid "Rate or Discount is required for the price discount." -msgstr "Za popust na cijenu potrebna je cijena ili popust." +msgstr "Za popust na cjenu potrebna je cjena ili popust." #. Label of the rates (Table) field in DocType 'Tax Withholding Category' #. Label of the rates_section (Section Break) field in DocType 'Stock Entry @@ -43467,7 +43545,7 @@ msgstr "Za popust na cijenu potrebna je cijena ili popust." #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Rates" -msgstr "Cijene" +msgstr "Cjene" #: erpnext/accounts/report/financial_ratios/financial_ratios.py:48 msgid "Ratios" @@ -43491,7 +43569,7 @@ msgstr "Troškak Sirovine" #. Label of the base_raw_material_cost (Currency) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "Raw Material Cost (Company Currency)" -msgstr "Cijena Sirovina (Valuta Poduzeća)" +msgstr "Cjena Sirovina (Valuta Poduzeća)" #. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting #. Order Item' @@ -43500,7 +43578,15 @@ msgstr "Cijena Sirovina (Valuta Poduzeća)" #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Raw Material Cost Per Qty" -msgstr "Cijena Sirovine po Količini" +msgstr "Cjena Sirovine po Količini" + +#. Label of the raw_material_group_warehouse (Link) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:160 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:180 +msgid "Raw Material Group Warehouse" +msgstr "Skladište Grupe Sirovina" #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:132 msgid "Raw Material Item" @@ -43544,7 +43630,7 @@ msgstr "Skladište Sirovina" #. Label of the section_break_8 (Section Break) field in DocType 'Job Card' #. Label of the mr_items (Table) field in DocType 'Production Plan' #: erpnext/manufacturing/doctype/bom/bom.js:449 -#: erpnext/manufacturing/doctype/bom/bom.js:1081 +#: erpnext/manufacturing/doctype/bom/bom.js:1085 #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:379 @@ -43601,7 +43687,7 @@ msgstr "Dostavljene Sirovine" #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Raw Materials Supplied Cost" -msgstr "Cijena Dostavljenih Sirovina" +msgstr "Cjena Dostavljenih Sirovina" #: erpnext/manufacturing/doctype/bom/bom.py:721 msgid "Raw Materials cannot be blank." @@ -43615,18 +43701,18 @@ msgstr "Sirovine za Klijenta" #. in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Raw materials consumed qty will be validated based on FG BOM required qty" -msgstr "Količina utrošenih sirovina bit će validirana na osnovu potrebne količine iz Sastavnice." +msgstr "Količina utrošenih sirovina bit će potvrđna na osnovu potrebne količine iz Sastavnice." #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:194 msgid "Re-extracting" msgstr "Ponovno izdvajanje" #: erpnext/buying/doctype/purchase_order/purchase_order.js:345 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:150 #: erpnext/manufacturing/doctype/work_order/work_order.js:788 #: erpnext/selling/doctype/sales_order/sales_order.js:1012 #: erpnext/selling/doctype/sales_order/sales_order_list.js:70 -#: erpnext/stock/doctype/material_request/material_request.js:243 +#: erpnext/stock/doctype/material_request/material_request.js:246 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:116 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:163 msgid "Re-open" @@ -43711,11 +43797,11 @@ msgstr "Vrijednost Čitanja" msgid "Readings" msgstr "Čitanja" -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Ready" msgstr "Spreman" -#: erpnext/public/js/templates/shop_floor_template.html:858 +#: erpnext/public/js/templates/shop_floor_template.html:878 msgid "Ready to Submit" msgstr "Spremno za Podnošenje" @@ -43763,7 +43849,7 @@ msgstr "Ponovo izračunaj Količinu Spremnika" #. Label of the recalculate_rate (Check) field in DocType 'Stock Ledger Entry' #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json msgid "Recalculate Incoming/Outgoing Rate" -msgstr "Preračunaj Nabavnu/Prodajnu Cijenu" +msgstr "Preračunaj Nabavnu/Prodajnu Cjenu" #. Label of the recalculate_valuation_rate (Check) field in DocType 'Repost #. Item Valuation' @@ -43822,7 +43908,7 @@ msgid "Receivable / Payable Account" msgstr "Račun Potraživanja / Plaćanja" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1156 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1158 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241 #: erpnext/accounts/report/sales_register/sales_register.py:231 #: erpnext/accounts/report/sales_register/sales_register.py:285 @@ -43944,7 +44030,7 @@ msgstr "Primljena Količina u Jedinici Zaliha" msgid "Received Quantity" msgstr "Primljena Količina" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:377 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:376 msgid "Received Stock Entries" msgstr "Primljeni Unosi Zaliha" @@ -43968,7 +44054,7 @@ msgstr "Lista Primatelja" #: erpnext/selling/doctype/sms_center/sms_center.py:166 msgid "Receiver List is empty. Please create Receiver List" -msgstr "Lista Primatelja je prazna. Kreiraj Listu Primatelja" +msgstr "Lista Primatelja je prazna. Izradi Listu Primatelja" #. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank #. Guarantee' @@ -44086,11 +44172,6 @@ msgstr "Zapisnik Usaglašavanja" msgid "Reconciliation Progress" msgstr "Napredak Usaglašavanja" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/banking.json -msgid "Reconciliation Statement" -msgstr "Izvještaj Usklađivanju" - #. Label of the reconciliation_takes_effect_on (Select) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json @@ -44179,7 +44260,7 @@ msgstr "HTML Snimanja" msgid "Recording URL" msgstr "URL Snimanja" -#: erpnext/public/js/shop_floor/shop_floor.js:995 +#: erpnext/public/js/shop_floor/shop_floor.js:1031 msgid "Recording inspection..." msgstr "Snimanje Kontrole..." @@ -44196,7 +44277,7 @@ msgstr "Standardni nadoknadivi troškovi ne bi trebali biti postavljeni kada je #. Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json msgid "Recreate Stock Ledgers" -msgstr "Ponovno kreiraj Registar Zaliha" +msgstr "Ponovno izradi Registar Zaliha" #. Label of the recurse_for (Float) field in DocType 'Pricing Rule' #. Label of the recurse_for (Float) field in DocType 'Promotional Scheme @@ -44206,14 +44287,14 @@ msgstr "Ponovno kreiraj Registar Zaliha" msgid "Recurse Every (As Per Transaction UOM)" msgstr "Povrati Svaki (prema Jedinici Transakcije)" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:240 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:258 msgid "Recurse Over Qty cannot be less than 0" msgstr "Rekurzija preko Količine ne može biti manja od 0" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:334 #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" -msgstr "Sistem ne podržava rekurzivne popuste sa mješovitim uvjetima" +msgstr "Sistem ne podržava rekurzivne popuste sa mješovitim uslovima" #. Label of the redeem_against (Link) field in DocType 'Loyalty Point Entry' #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json @@ -44451,20 +44532,20 @@ msgstr "Referentni Prodajni Partner" #: erpnext/accounts/doctype/bank/bank.js:18 msgid "Refresh Plaid Link" -msgstr "Osvježite Plaid Link" +msgstr "Osvježi Plaid Link" #. Option for the 'Status' (Select) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Refunded" msgstr "Povraćeno" -#: erpnext/stock/reorder_item.py:383 +#: erpnext/stock/reorder_item.py:385 msgid "Regards," msgstr "Pozdrav," #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:27 msgid "Regenerate Stock Closing Entry" -msgstr "Regeneriraj Zatvaranje Unosa Zaliha" +msgstr "Ponovo Izradi Zatvaranje Unosa Zaliha" #. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule #. Description Conditions' @@ -44586,7 +44667,7 @@ msgstr "Datum Izlaska" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:322 msgid "Release date must be in the future" -msgstr "Datum kreiranja mora biti u budućnosti" +msgstr "Datum izrade mora biti u budućnosti" #. Label of the relieving_date (Date) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -44602,7 +44683,7 @@ msgid "Remaining Amount" msgstr "Preostali Iznos" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1235 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180 msgid "Remaining Balance" msgstr "Preostalo Stanje" @@ -44660,7 +44741,7 @@ msgstr "Napomena" #: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:11 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:135 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1267 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 #: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:121 @@ -44707,7 +44788,7 @@ msgstr "Uklonjeni artikli bez promjene Količine ili Vrijednosti." #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:161 msgid "Removed {0} rows with zero document count. Please save to persist changes." -msgstr "Uklonjeno je {0} redova sa nula dokumenata. Molimo sačuvajte promjene da biste ih sačuvali." +msgstr "Uklonjeno je {0} redova sa nula dokumenata. Molimo spremi promjene da biste ih spremili." #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:88 msgid "Removing rows without exchange gain or loss" @@ -44833,8 +44914,8 @@ msgstr "Zamijeni Sastavnicu" #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM.\n" "It also updates latest price in all the BOMs." -msgstr "Zamijeni određenu Sastavnicu u svim ostalim Sastavnicama gdje se koristi. Zamijenit će staru vezu Sastavnice, ažurirati troškove i regenerirati tabelu \"Artikal Nestavljene Sastavnice\" prema novoj Sastavnici.\n" -"Također ažurira najnoviju cijenu u svim Sastavnicama." +msgstr "Zamijeni određenu Sastavnicu u svim ostalim Sastavnicama gdje se koristi. Zamijenit će staru vezu Sastavnice, ažurirati troškove i reizraditi tabelu \"Artikal Nestavljene Sastavnice\" prema novoj Sastavnici.\n" +"Također ažurira najnoviju cjenu u svim Sastavnicama." #. Label of the report_date (Date) field in DocType 'Quality Inspection' #: erpnext/accounts/report/accounts_payable/accounts_payable.html:120 @@ -44854,12 +44935,12 @@ msgid "Report Line Items" msgstr "Artikal Reda Izvještaja" #: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 -#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 +#: erpnext/accounts/report/cash_flow/cash_flow.js:29 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 msgid "Report Template" -msgstr "Šablon Izvještaja" +msgstr "Predložak Izvještaja" #: erpnext/accounts/doctype/account/account.py:462 msgid "Report Type is mandatory" @@ -44867,7 +44948,7 @@ msgstr "Tip Izvještaja je obavezan" #: erpnext/setup/install.py:249 msgid "Report an Issue" -msgstr "Prijavi Slučaj" +msgstr "Prijavi Zahtjev" #. Label of the reporting_currency (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json @@ -44930,7 +45011,7 @@ msgstr "Zapisnik Grešaka Ponovnog Knjiženja" msgid "Repost Item Valuation" msgstr "Ponovo Knjiži Vrijednost Artikla" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:399 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Ponovno knjiženje vrijednosti artikla je ponovo pokrenuto za odabrane neuspješne zapise." @@ -45014,7 +45095,7 @@ msgstr "Napredak Ponovnog Knjiženja Kaučera" #: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:232 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:340 msgid "Reposting entries created: {0}" -msgstr "Unosi Ponovno kniženja kreirani: {0}" +msgstr "Unosi Ponovno kniženja izrađeni: {0}" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:132 msgid "Reposting for Item-Wh Completed {0}%" @@ -45069,7 +45150,7 @@ msgstr "Obavezno do Datuma" msgid "Reqd Qty (BOM)" msgstr "Zahtjevana količina (Sastavnica)" -#: erpnext/public/js/utils.js:908 +#: erpnext/public/js/utils.js:920 msgid "Reqd by date" msgstr "Obavezno do Datuma" @@ -45115,7 +45196,7 @@ msgstr "Zahtjev za Informacijama" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:270 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/stock/doctype/material_request/material_request.js:202 +#: erpnext/stock/doctype/material_request/material_request.js:205 #: erpnext/workspace_sidebar/buying.json msgid "Request for Quotation" msgstr "Zahtjev za Ponudu" @@ -45177,7 +45258,7 @@ msgstr "Zatraženi Artikli za Nalog i Prijem" msgid "Requested Qty" msgstr "Zatražena Količina" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:202 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:228 msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Zatražena Količina: Zatražena količina za nabavu, ali nije naručena." @@ -45290,7 +45371,7 @@ msgstr "Zahteva Ispunjenje" msgid "Research" msgstr "Istraživanja" -#: erpnext/setup/doctype/company/company.py:579 +#: erpnext/setup/doctype/company/company.py:581 msgid "Research & Development" msgstr "Istraživanje & Razvoj" @@ -45320,7 +45401,7 @@ msgstr "Preprodavač" #: erpnext/accounts/doctype/payment_request/payment_request.js:47 msgid "Resend Payment Email" -msgstr "Ponovo pošaljite e-poštu za plaćanje" +msgstr "Ponovo pošalji e-poštu za plaćanje" #: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:13 msgid "Reservation" @@ -45333,7 +45414,7 @@ msgstr "Rezervacija" msgid "Reservation Based On" msgstr "Rezervacija Na Osnovu" -#: erpnext/manufacturing/doctype/work_order/work_order.js:946 +#: erpnext/manufacturing/doctype/work_order/work_order.js:950 #: erpnext/selling/doctype/sales_order/sales_order.js:107 #: erpnext/stock/doctype/pick_list/pick_list.js:158 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179 @@ -45368,11 +45449,11 @@ msgstr "Rezervno Skladište" msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." msgstr "Rezervno Skladište mora biti različito od Dobavljačevog Skladišta za Isporučeni Artikal {0}." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:313 msgid "Reserve for Raw Materials" msgstr "Rezerviši za Sirovine" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:261 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Sub-assembly" msgstr "Rezerviši za Podsklop" @@ -45381,7 +45462,7 @@ msgstr "Rezerviši za Podsklop" msgid "Reserved" msgstr "Rezervisano" -#: erpnext/stock/services/serial_batch_bundle_service.py:665 +#: erpnext/stock/services/serial_batch_bundle_service.py:664 msgid "Reserved Batch Conflict" msgstr "Konflikt Rezervirane Šarže" @@ -45422,7 +45503,7 @@ msgstr "Rezervisana Količina za Proizvodnju" msgid "Reserved Qty for Production Plan" msgstr "Rezervisana Količina za Plan Proizvodnje" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:211 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:237 msgid "Reserved Qty for Production: Raw materials quantity to make manufacturing items." msgstr "Rezervisana količina za Proizvodnju: Količina sirovina za proizvodnju artikala." @@ -45431,7 +45512,7 @@ msgstr "Rezervisana količina za Proizvodnju: Količina sirovina za proizvodnju msgid "Reserved Qty for Subcontract" msgstr "Rezervisana Količina za Podizvođača" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:214 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:240 msgid "Reserved Qty for Subcontract: Raw materials quantity to make subcontracted items." msgstr "Rezervisana količina za Podizvođača: Količina sirovina za proizvodnju podizvođačkih artikala." @@ -45439,7 +45520,7 @@ msgstr "Rezervisana količina za Podizvođača: Količina sirovina za proizvodnj msgid "Reserved Qty should be greater than Delivered Qty." msgstr "Rezervisana Količina bi trebala biti veća od Dostavljene Količine." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:208 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:234 msgid "Reserved Qty: Quantity ordered for sale, but not delivered." msgstr "Rezervisana Količina: Naručena količina za prodaju, ali nije dostavljena." @@ -45451,14 +45532,14 @@ msgstr "Rezervisana Količina" msgid "Reserved Quantity for Production" msgstr "Rezervisana Količina za Proizvodnju" -#: erpnext/stock/stock_ledger.py:2452 +#: erpnext/stock/stock_ledger.py:2500 msgid "Reserved Serial No." msgstr "Rezervisani Serijski Broj" #. Label of the reserved_stock (Float) field in DocType 'Bin' #. Name of a report #: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:24 -#: erpnext/manufacturing/doctype/work_order/work_order.js:962 +#: erpnext/manufacturing/doctype/work_order/work_order.js:966 #: erpnext/public/js/stock_reservation.js:236 #: erpnext/selling/doctype/sales_order/sales_order.js:128 #: erpnext/selling/doctype/sales_order/sales_order.js:495 @@ -45467,21 +45548,21 @@ msgstr "Rezervisani Serijski Broj" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2436 +#: erpnext/stock/stock_ledger.py:2484 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Rezervisane Zalihe" -#: erpnext/stock/stock_ledger.py:2481 +#: erpnext/stock/stock_ledger.py:2529 msgid "Reserved Stock for Batch" msgstr "Rezervisane Zalihe za Šaržu" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:327 msgid "Reserved Stock for Raw Materials" msgstr "Rezervsane Zalihe za Sirovine" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:275 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301 msgid "Reserved Stock for Sub-assembly" msgstr "Rezervisane Zalihe za Podsklop" @@ -45515,7 +45596,7 @@ msgstr "Rezervirano za Podizvođača" #: erpnext/public/js/stock_reservation.js:203 #: erpnext/selling/doctype/sales_order/sales_order.js:421 -#: erpnext/stock/doctype/pick_list/pick_list.js:306 +#: erpnext/stock/doctype/pick_list/pick_list.js:307 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:292 msgid "Reserving Stock..." msgstr "Rezervacija Zaliha..." @@ -45553,7 +45634,7 @@ msgstr "Poništiavanje Standardnog Nivoa Servisa u toku..." #. Label of the resignation_letter_date (Date) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "Resignation Letter Date" -msgstr "Datum Otpusnog Pisma" +msgstr "Datum Otkaznog Pisma" #. Label of the sb_00 (Section Break) field in DocType 'Quality Action' #. Label of the resolution (Text Editor) field in DocType 'Quality Action @@ -45686,7 +45767,7 @@ msgstr "Ponovo pokreni neuspješne unose" msgid "Restart Subscription" msgstr "Ponovo pokreni Pretplatu" -#: erpnext/assets/doctype/asset/asset.js:183 +#: erpnext/assets/doctype/asset/asset.js:191 msgid "Restore Asset" msgstr "Vrati Imovinu" @@ -45702,6 +45783,15 @@ msgstr "Ograniči" msgid "Restrict Items Based On" msgstr "Ograniči Artikle na osnovu" +#. Label of the restrict_to_companies (Check) field in DocType 'Supplier' +#. Label of the restrict_to_companies (Check) field in DocType 'Customer' +#. Label of the restrict_to_companies (Check) field in DocType 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Restrict to Companies" +msgstr "" + #. Label of the section_break_6 (Section Break) field in DocType 'Shipping #. Rule' #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json @@ -45740,11 +45830,11 @@ msgid "Resume" msgstr "Nastavi" #: erpnext/manufacturing/doctype/job_card/job_card.js:661 -#: erpnext/public/js/templates/shop_floor_template.html:759 +#: erpnext/public/js/templates/shop_floor_template.html:779 msgid "Resume Job" msgstr "Nastavi Posao" -#: erpnext/projects/doctype/timesheet/timesheet.js:65 +#: erpnext/projects/doctype/timesheet/timesheet.js:66 msgid "Resume Timer" msgstr "Nastavi Tajmer" @@ -45979,7 +46069,7 @@ msgstr "Revalorizacija" msgid "Revaluation Entry" msgstr "Unos Revalorizacije" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:385 msgid "Revaluation Journal: {0}" msgstr "Žurnal Revalorizacije: {0}" @@ -45995,6 +46085,10 @@ msgstr "Revaloracijski Žurnali" msgid "Revaluation Surplus" msgstr "Revalorizacioni Višak" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:631 +msgid "Revaluation journal for {0} has been created: {1}" +msgstr "Dnevnik revalorizacije za {0} je izrađen: {1}" + #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:88 msgid "Revenue" msgstr "Prihod" @@ -46004,11 +46098,19 @@ msgstr "Prihod" msgid "Revenue Account" msgstr "Račun Prihoda" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:39 +msgid "Reversal Journal Entries" +msgstr "Poništavanje Unosa Naloga " + #. Label of the reversal_of (Link) field in DocType 'Journal Entry' #: erpnext/accounts/doctype/journal_entry/journal_entry.json msgid "Reversal Of" msgstr "Suprotno od" +#: erpnext/accounts/doctype/journal_entry/journal_entry_list.js:6 +msgid "Reversal Of Exchange Rate Revaluation" +msgstr "Poništavanje Revalorizacije Deviznog Kursa" + #: erpnext/accounts/doctype/journal_entry/journal_entry.js:253 msgid "Reverse Journal Entry" msgstr "Suprotni Nalog Knjiženja" @@ -46018,6 +46120,10 @@ msgstr "Suprotni Nalog Knjiženja" msgid "Reverse Sign" msgstr "Obrnuta Signatura" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:118 +msgid "Reversing Journals..." +msgstr "Poništavanje Naloga..." + #. Label of the review (Link) field in DocType 'Quality Action' #. Group in Quality Goal's connections #. Label of the sb_00 (Section Break) field in DocType 'Quality Review' @@ -46154,6 +46260,12 @@ msgstr "Uloga dozvoljena da prekomjerno Fakturiše " msgid "Role allowed to bypass credit limit" msgstr "Uloga dozvoljena da zaobiđe Kreditno Ograničenje" +#. Label of the role_allowed_to_bypass_overdue_billing (Link) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role allowed to bypass overdue billing limit" +msgstr "" + #. Description of the 'Exempted Role' (Link) field in DocType 'Accounting #. Period' #: erpnext/accounts/doctype/accounting_period/accounting_period.json @@ -46164,12 +46276,12 @@ msgstr "Uloga kojoj je dozvoljeno zaobilaženje ograničenja perioda." #. field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Role allowed to create/edit back-dated transactions" -msgstr "Uloga dozvoljena da Kreira/Uređuje Transakcije s prijašnjim datumom" +msgstr "Uloga dozvoljena da Izradi/Uređuje Transakcije s prijašnjim datumom" #. Label of the stock_auth_role (Link) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Role allowed to edit frozen stock" -msgstr "Uloga dozvoljena za Uređivanje Zamrznutih Zaliha" +msgstr "Uloga dozvoljena za Uređivanje Zatvorenih Zaliha" #. Label of the role_to_override_stop_action (Link) field in DocType 'Accounts #. Settings' @@ -46193,7 +46305,7 @@ msgstr "Uloga obavještavanja o neuspjehu amortizacije" #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Roles Allowed to Set and Edit Frozen Account Entries" -msgstr "Uloge kojima je dozvoljeno postavljanje i uređivanje unosa zamrznutih računa" +msgstr "Uloge kojima je dozvoljeno postavljanje i uređivanje unosa zatvorenih računa" #. Label of the root (Link) field in DocType 'Bisect Nodes' #: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json @@ -46215,7 +46327,7 @@ msgstr "Matično Poduzeće" msgid "Root Type" msgstr "Kontna Klasa" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:404 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:405 msgid "Root Type for {0} must be one of the Asset, Liability, Income, Expense and Equity" msgstr "Kontna Klasa za {0} mora biti jedna od imovine, obaveza, prihoda, rashoda i kapitala" @@ -46374,13 +46486,13 @@ msgstr "Podešavanje Zaokruživanja (Valuta Poduzeća)" msgid "Rounding Loss Allowance" msgstr "Dozvola Zaokruživanja Gubitka" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:45 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:55 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:49 msgid "Rounding Loss Allowance should be between 0 and 1" msgstr "Dozvola Zaokruživanje Gubitka treba da bude između 0 i 1" -#: erpnext/stock/services/base_stock_gl_composer.py:119 -#: erpnext/stock/services/base_stock_gl_composer.py:134 +#: erpnext/stock/services/base_stock_gl_composer.py:126 +#: erpnext/stock/services/base_stock_gl_composer.py:141 msgid "Rounding gain/loss Entry for Stock Transfer" msgstr "Unos Zaokruživanja Rezultat za Prijenos Zaliha" @@ -46396,12 +46508,12 @@ msgstr "Unos Zaokruživanja Rezultat za Prijenos Zaliha" #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/workspace_sidebar/manufacturing.json msgid "Routing" -msgstr "Redosllijed Operacija" +msgstr "Redosllijed Radnji" #. Label of the routing_name (Data) field in DocType 'Routing' #: erpnext/manufacturing/doctype/routing/routing.json msgid "Routing Name" -msgstr "Naziv Redoslijeda Operacija" +msgstr "Naziv Redoslijeda Radnji" #: erpnext/controllers/sales_and_purchase_return.py:226 msgid "Row # {0}: Cannot return more than {1} for Item {2}" @@ -46417,15 +46529,15 @@ msgstr "Red br. {0}: Unesi količinu za artikal {1} jer nije nula." #: erpnext/controllers/sales_and_purchase_return.py:151 msgid "Row # {0}: Rate cannot be greater than the rate used in {1} {2}" -msgstr "Red # {0}: Cijena ne može biti veća od cijene korištene u {1} {2}" +msgstr "Red # {0}: Cjena ne može biti veća od cjene korištene u {1} {2}" #: erpnext/controllers/sales_and_purchase_return.py:135 msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}" msgstr "Red # {0}: Vraćeni artikal {1} nema u {2} {3}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:343 +#: erpnext/manufacturing/doctype/work_order/work_order.py:349 msgid "Row #1: Sequence ID must be 1 for Operation {0}." -msgstr "Red #1: ID Sekvence mora biti 1 za Operaciju {0}." +msgstr "Red #1: ID Sekvence mora biti 1 za Radnju {0}." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:568 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:320 @@ -46437,7 +46549,7 @@ msgstr "Red #{0} (Tabela Plaćanja): Iznos mora da je negativan" msgid "Row #{0} (Payment Table): Amount must be positive" msgstr "Red #{0} (Tabela Plaćanja): Iznos mora da je pozitivan" -#: erpnext/stock/doctype/item/item.py:585 +#: erpnext/stock/doctype/item/item.py:590 msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}." msgstr "Red #{0}: Unos ponovnog naručivanja već postoji za skladište {1} sa tipom ponovnog naručivanja {2}." @@ -46517,7 +46629,7 @@ msgstr "Red #{0}: Ne može se otkazati ovaj Unos Zaliha jer vraćena količina n #: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:78 msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links." -msgstr "Red #{0}: Ne može se kreirati unos s različitim vezama na PDV I Odbitak PDV-a dokument." +msgstr "Red #{0}: Ne može se izraditi unos s različitim vezama na PDV I Odbitak PDV-a dokument." #: erpnext/accounts/services/child_item_update.py:397 msgid "Row #{0}: Cannot delete item {1} which has already been billed." @@ -46541,7 +46653,7 @@ msgstr "Red #{0}: Ne može se izbrisati artikal {1} koja je već u ovom Prodajno #: erpnext/accounts/services/child_item_update.py:525 msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}." -msgstr "Red #{0}: Ne može se postaviti cijena ako je fakturisani iznos veći od iznosa za artikal {1}." +msgstr "Red #{0}: Ne može se postaviti cjena ako je fakturisani iznos veći od iznosa za artikal {1}." #: erpnext/manufacturing/doctype/job_card/job_card.py:1232 msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}" @@ -46600,11 +46712,11 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} naspram Artikla Internog Podizv msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne može se dodati više puta u Podizvođačkom procesu." -#: erpnext/manufacturing/doctype/work_order/work_order.py:420 +#: erpnext/manufacturing/doctype/work_order/work_order.py:426 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne može se dodati više puta." -#: erpnext/manufacturing/doctype/work_order/work_order.py:445 +#: erpnext/manufacturing/doctype/work_order/work_order.py:451 msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne postoji u tabeli Obaveznih Artikala povezanih s Interim Podizvođačkim Nalogom." @@ -46612,7 +46724,7 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne postoji u tabeli Obaveznih A msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Red #{0}: Klijent Dostavljen Artikal {1} premašuje količinu dostupnu putem Podizvođačkog Naloga" -#: erpnext/manufacturing/doctype/work_order/work_order.py:433 +#: erpnext/manufacturing/doctype/work_order/work_order.py:439 msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} nema dovoljnu količinu u Internom Podizvođačkom Nalogu. Dostupna količina je {2}." @@ -46653,11 +46765,11 @@ msgstr "Red #{0}: Unesi Stopu Vrednovanja za artikal {1} da biste postavili poč msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Red #{0}: Očekivani Datum Isporuke ne može biti prije datuma Nabavnog Naloga" -#: erpnext/stock/services/base_stock_gl_composer.py:196 +#: erpnext/stock/services/base_stock_gl_composer.py:263 msgid "Row #{0}: Expense Account not set for the Item {1}. {2}" msgstr "Red #{0}: Račun Troškova nije postavljen za artikal {1}. {2}" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:145 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:148 msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Red #{0}: Račun troškova {1} nije važeći za Nabavnu Fakturu {2}. Dozvoljeni su samo računi troškova za artikle koji nisu na zalihama." @@ -46720,11 +46832,11 @@ msgstr "Red #{0}: Od datuma ne može biti prije Do datuma" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Red #{0}: Polja Od i Do su obavezna" -#: erpnext/stock/doctype/pick_list/pick_list.py:680 +#: erpnext/stock/doctype/pick_list/pick_list.py:689 msgid "Row #{0}: Item Code is Mandatory" msgstr "Red #{0}: Šifra Artikla je obavezna" -#: erpnext/public/js/utils/barcode_scanner.js:427 +#: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Row #{0}: Item added" msgstr "Red #{0}: Artikel je dodan" @@ -46736,7 +46848,7 @@ msgstr "Red #{0}: Artikal {1} se ne može prenijeti više od {2} u odnosu na {3} msgid "Row #{0}: Item {1} does not exist" msgstr "Red #{0}: Artikel {1} ne postoji" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1650 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1661 msgid "Row #{0}: Item {1} has been picked, please reserve stock from the Pick List." msgstr "Red #{0}: Artikal {1} je odabran, rezerviši zalihe sa Liste Odabira." @@ -46813,7 +46925,7 @@ msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma nabave msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists" msgstr "Red #{0}: Nije dozvoljeno mijenjati dobavljača jer Nabavni Nalog već postoji" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1733 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1744 msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Red #{0}: Samo {1} je dostupno za rezervisanje za artikal {2}" @@ -46866,11 +46978,11 @@ msgstr "Red #{0}: Odaberi Artikal Gotovog Proizvoda za koju će se koristiti ova msgid "Row #{0}: Please select the Sub Assembly Warehouse" msgstr "Red #{0}: Odaberi Skladište Podmontaže" -#: erpnext/stock/doctype/item/item.py:592 +#: erpnext/stock/doctype/item/item.py:597 msgid "Row #{0}: Please set reorder quantity" -msgstr "Red #{0}: Postavite količinu za ponovnu narudžbu" +msgstr "Red #{0}: Postavi količinu za ponovnu narudžbu" -#: erpnext/controllers/accounts_controller.py:521 +#: erpnext/accounts/services/deferred_accounting.py:30 msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Red #{0}: Ažuriraj račun odloženih prihoda/troškova u redu artikla ili sttandard račun u postavkama poduzeća" @@ -46881,13 +46993,13 @@ msgstr "Red #{0}: Koristi drugi Finansijski Registar." #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" -msgstr "Red #{0}: Procentualni Gubitka Procesa treba da bude manji od 100% za {1} artikal {2}" +msgstr "Red #{0}: Postotni Gubitak Procesa treba da bude manji od 100% za {1} artikal {2}" #: erpnext/stock/doctype/packed_item/packed_item.py:213 msgid "Row #{0}: Product Bundle {1} is disabled and cannot be used in transactions." msgstr "Red #{0}: Paket Artikal {1} je onemogućen i ne može se koristiti u transakcijama." -#: erpnext/public/js/utils/barcode_scanner.js:425 +#: erpnext/public/js/utils/barcode_scanner.js:433 msgid "Row #{0}: Qty increased by {1}" msgstr "Red #{0}: Količina povećana za {1}" @@ -46916,7 +47028,7 @@ msgstr "Red #{0}: Kontrola Kvaliteta {1} je odbijena za artikal {2}" msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}" msgstr "Red #{0}: Količina ne može biti negativan broj. Postavi količinu ili ukloni artikal {1}" -#: erpnext/controllers/accounts_controller.py:996 +#: erpnext/controllers/accounts_controller.py:923 msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za artikal {1} ne može biti nula." @@ -46924,7 +47036,7 @@ msgstr "Red #{0}: Količina za artikal {1} ne može biti nula." msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Red #{0}: Količina artikla {1} ne može biti veća od {2} {3} u odnosu na Podizvođački Nalog {4}" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1718 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1729 msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Red #{0}: Količina koju treba rezervisati za artikal {1} treba biti veća od 0." @@ -46932,7 +47044,7 @@ msgstr "Red #{0}: Količina koju treba rezervisati za artikal {1} treba biti ve #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" -msgstr "Red #{0}: Cijena mora biti ista kao {1}: {2} ({3} / {4})" +msgstr "Red #{0}: Cjena mora biti ista kao {1}: {2} ({3} / {4})" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1247 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" @@ -46950,7 +47062,7 @@ msgstr "Red #{0}: Odbijena količina se ne može postaviti za Sekundarni Artikal msgid "Row #{0}: Rejected Warehouse is mandatory for the rejected Item {1}" msgstr "Red #{0}: Odbijeno Skladište je obavezno za odbijeni artikal {1}" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:163 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:166 msgid "Row #{0}: Repair cost {1} exceeds available amount {2} for Purchase Invoice {3} and Account {4}" msgstr "Red #{0}: Trošak popravke {1} premašuje raspoloživi iznos {2} za Nabavnu Fakturu {3} i račun {4}" @@ -46975,20 +47087,20 @@ msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" "\t\t\t\t\tSelling {3} should be at least {4}.
Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Red #{0}: Prodajna cijena za artikal {1} je niža od njegove {2}.\n" +msgstr "Red #{0}: Prodajna cjena za artikal {1} je niža od njegove {2}.\n" "\t\t\t\t\tProdaja {3} treba biti najmanje {4}.
Alternativno,\n" "\t\t\t\t\tmožete onemogućiti '{5}' u {6} da biste zaobišli\n" "\t\t\t\t\tovu validaciju." -#: erpnext/manufacturing/doctype/work_order/work_order.py:349 +#: erpnext/manufacturing/doctype/work_order/work_order.py:355 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." -msgstr "Red #{0}: ID Sekvence mora biti {1} ili {2} za Operaciju {3}." +msgstr "Red #{0}: ID Sekvence mora biti {1} ili {2} za Radnju {3}." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" msgstr "Red #{0}: Serijski Broj {1} ne može se vratiti jer nije naveden u originalnoj fakturi {2}" -#: erpnext/stock/services/serial_batch_bundle_service.py:123 +#: erpnext/stock/services/serial_batch_bundle_service.py:125 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Red #{0}: Serijski Broj {1} ne pripada Šarži {2}" @@ -47004,15 +47116,15 @@ msgstr "Red #{0}: Serijski Broj {1} je već odabran." msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Red #{0}: Serijski Broj(evi) {1} nisu u povezanom Podizvođačkom Nalogu. Odaberi važeći serijski broj(eve)." -#: erpnext/controllers/accounts_controller.py:549 +#: erpnext/accounts/services/deferred_accounting.py:53 msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date" msgstr "Red #{0}: Datum završetka servisa ne može biti prije datuma knjiženja fakture" -#: erpnext/controllers/accounts_controller.py:543 +#: erpnext/accounts/services/deferred_accounting.py:49 msgid "Row #{0}: Service Start Date cannot be greater than Service End Date" msgstr "Red #{0}: Datum početka servisa ne može biti veći od datuma završetka servisa" -#: erpnext/controllers/accounts_controller.py:537 +#: erpnext/accounts/services/deferred_accounting.py:43 msgid "Row #{0}: Service Start and End Date is required for deferred accounting" msgstr "Red #{0}: Datum početka i završetka servisa je potreban za odloženo knjigovodstvo" @@ -47028,11 +47140,11 @@ msgstr "Red #{0}: Pošto je omogućeno 'Praćenje Polugotovih Artikala', Sastavn msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Izvorno skladište mora biti isto kao i skladište klijenta {1} iz povezanog Podizvođačkog Naloga" -#: erpnext/manufacturing/doctype/work_order/work_order.py:454 +#: erpnext/manufacturing/doctype/work_order/work_order.py:460 msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse." msgstr "Red #{0}: Izvorno skladište {1} za artikal {2} ne može biti skladište klijenta." -#: erpnext/manufacturing/doctype/work_order/work_order.py:409 +#: erpnext/manufacturing/doctype/work_order/work_order.py:415 msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order." msgstr "Red #{0}: Izvorno Skladište {1} za artikal {2} mora biti isto kao i Izvorno Skladište {3} u Radnom Nalogu." @@ -47056,7 +47168,7 @@ msgstr "Red #{0}: Status je obavezan" msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}" msgstr "Red #{0}: Status mora biti {1} za popust na fakturi {2}" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:442 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:459 msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice" msgstr "Red #{0}: Račun za isporučene, ali nefakturirane zalihe ne može se koristiti za artikle povezane s prodajnom fakturom" @@ -47064,19 +47176,19 @@ msgstr "Red #{0}: Račun za isporučene, ali nefakturirane zalihe ne može se ko msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}." msgstr "Red #{0}: Zaliha se ne može rezervisati za artikal {1} naspram onemogućene Šarže {2}." -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1663 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1674 msgid "Row #{0}: Stock cannot be reserved for a non-stock Item {1}" msgstr "Red #{0}: Zalihe se ne mogu rezervirati za artikal bez zaliha {1}" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1676 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1687 msgid "Row #{0}: Stock cannot be reserved in group warehouse {1}." msgstr "Red #{0}: Zalihe se ne mogu rezervisati u grupnom skladištu {1}." -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1690 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1701 msgid "Row #{0}: Stock is already reserved for the Item {1}." msgstr "Red #{0}: Zaliha je već rezervisana za artikal {1}." -#: erpnext/stock/doctype/delivery_note/delivery_note.py:557 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:574 msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}." msgstr "Red #{0}: Zalihe su rezervisane za artikal {1} u skladištu {2}." @@ -47084,12 +47196,12 @@ msgstr "Red #{0}: Zalihe su rezervisane za artikal {1} u skladištu {2}." msgid "Row #{0}: Stock not available to reserve for Item {1} against Batch {2} in Warehouse {3}." msgstr "Red #{0}: Zaliha nije dostupna za rezervisanje za artikal {1} naspram Šarže {2} u Skladištu {3}." -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1254 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1704 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1263 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1715 msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}." msgstr "Red #{0}: Zaliha nije dostupna za rezervisanje za artikal {1} u skladištu {2}." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:944 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:950 msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Red #{0}: Količina zaliha {1} ({2}) za artikal {3} ne može biti veća od {4}" @@ -47097,7 +47209,7 @@ msgstr "Red #{0}: Količina zaliha {1} ({2}) za artikal {3} ne može biti veća msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1} iz povezanog Podizvođačkog Naloga" -#: erpnext/stock/services/serial_batch_bundle_service.py:141 +#: erpnext/stock/services/serial_batch_bundle_service.py:143 msgid "Row #{0}: The batch {1} has already expired." msgstr "Red #{0}: Šarža {1} je već istekla." @@ -47109,7 +47221,7 @@ msgstr "Red #{0}: Nedostaje referenca artikla na radnoj kartici. Stvori unos zal msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." msgstr "Red #{0}: Originalna Faktura {1} povratne fakture {2} nije konsolidovana." -#: erpnext/stock/doctype/item/item.py:601 +#: erpnext/stock/doctype/item/item.py:606 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Red #{0}: Skladište {1} nije podređeno skladište grupnog skladišta {2}" @@ -47129,7 +47241,7 @@ msgstr "Red #{0}: Ukupan broj amortizacija mora biti veći od nule" msgid "Row #{0}: Valuation Rate for Item {1} must be the same across all rows, as it is the item's company-wide Standard Cost." msgstr "Red #{0}: Stopa Vrednovanja za Artikal {1} mora biti ista u svim redovima, jer predstavlja Standardne Troškove artikla na nivou poduzeća." -#: erpnext/stock/services/serial_batch_bundle_service.py:57 +#: erpnext/stock/services/serial_batch_bundle_service.py:59 msgid "Row #{0}: Warehouse {1} does not match with the warehouse {2} in Serial and Batch Bundle {3}." msgstr "Red #{0}: Skladište {1} nije usklađen sa skladištem {2} u serijskom i šaržnom paketu {3}." @@ -47176,13 +47288,13 @@ msgstr "Red #{0}: {1} nije važeće polje za čitanje. Pogledaj opis polja." #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:131 msgid "Row #{0}: {1} is required to create the Opening {2} Invoices" -msgstr "Red #{0}: {1} je obavezno za kreiranje Početne Fakture {2}" +msgstr "Red #{0}: {1} je obavezno za izradu Početne Fakture {2}" #: erpnext/assets/doctype/asset_category/asset_category.py:89 msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Red #{0}: {1} od {2} bi trebao biti {3}. Ažuriraj {1} ili odaberi drugi račun." -#: erpnext/stock/doctype/item/item.py:1557 +#: erpnext/stock/doctype/item/item.py:1562 msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." msgstr "Red #{0}: {1} {2} ne pripada {3}. Odaberi važeći {4}." @@ -47202,23 +47314,23 @@ msgstr "Red #{1}: Skladište je obavezno za artikal {0}" msgid "Row #{idx}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor." msgstr "Red #{idx}: Ne može se odabrati Skladište Dobavljača dok isporučuje sirovine podizvođaču." -#: erpnext/controllers/buying_controller.py:633 +#: erpnext/controllers/buying_controller.py:641 msgid "Row #{idx}: Item rate has been updated as per valuation rate since its an internal stock transfer." -msgstr "Red #{idx}: Cijena artikla je ažurirana prema stopi vrednovanja zato što je ovo interni prijenos zaliha." +msgstr "Red #{idx}: Cjena artikla je ažurirana prema stopi vrednovanja zato što je ovo interni prijenos zaliha." -#: erpnext/controllers/buying_controller.py:1069 +#: erpnext/controllers/buying_controller.py:1077 msgid "Row #{idx}: Please enter a location for the asset item {item_code}." msgstr "Red #{idx}: Unesi lokaciju za imovinski artikal {item_code}." -#: erpnext/controllers/buying_controller.py:726 +#: erpnext/controllers/buying_controller.py:734 msgid "Row #{idx}: Received Qty must be equal to Accepted + Rejected Qty for Item {item_code}." msgstr "Red #{idx}: Primljena količina mora biti jednaka Prihvaćenoj + Odbijenoj količini za Artikal {item_code}." -#: erpnext/controllers/buying_controller.py:739 +#: erpnext/controllers/buying_controller.py:747 msgid "Row #{idx}: {field_label} can not be negative for item {item_code}." msgstr "Red #{idx}: {field_label} ne može biti negativan za artikal {item_code}." -#: erpnext/controllers/buying_controller.py:692 +#: erpnext/controllers/buying_controller.py:700 msgid "Row #{idx}: {field_label} is mandatory." msgstr "Red #{idx}: {field_label} je obavezan." @@ -47226,7 +47338,7 @@ msgstr "Red #{idx}: {field_label} je obavezan." msgid "Row #{idx}: {from_warehouse_field} and {to_warehouse_field} cannot be same." msgstr "Red #{idx}: {from_warehouse_field} i {to_warehouse_field} ne mogu biti isti." -#: erpnext/controllers/buying_controller.py:1185 +#: erpnext/controllers/buying_controller.py:1193 msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Red #{idx}: {schedule_date} ne može biti prije {transaction_date}." @@ -47236,11 +47348,11 @@ msgstr "Red #{}: Dodijeli zadatak članu." #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" -msgstr "Red br {0}: Skladište je obezno. Postavite standard skladište za {1} i {2}" +msgstr "Red br {0}: Skladište je obezno. Postavi standard skladište za {1} i {2}" #: erpnext/manufacturing/doctype/job_card/job_card.py:807 msgid "Row {0} : Operation is required against the raw material item {1}" -msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}" +msgstr "Red {0} : Radnji je obavezna naspram artikla sirovine {1}" #: erpnext/stock/doctype/pick_list/pick_list.py:267 msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." @@ -47270,19 +47382,19 @@ msgstr "Red {0}: Predujam naspram Klijenta mora biti kredit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Red {0}: Predujam naspram Dobavljača mora biti debit" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:770 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak nepodmirenom iznosu fakture {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:762 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak preostalom iznosu plaćanja {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:716 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Red {0}: Kako je {1} omogućen, sirovine se ne mogu dodati u {2} unos. Koristite {3} unos za potrošnju sirovina." -#: erpnext/stock/doctype/material_request/material_request.py:556 +#: erpnext/stock/doctype/material_request/material_request.py:595 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Red {0}: Sastavnica nije pronađena za Artikal {1}" @@ -47353,7 +47465,7 @@ msgstr "Red {0}: Račun Troškova {1} je povezan sa {2}. Odaberi račun koji pri #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:91 msgid "Row {0}: Expense Head changed to {1} as no Purchase Receipt is created against Item {2}." -msgstr "Red {0}: Račun Troškova je promijenjen u {1} jer se nije kreirao Nabavni Račun naspram artikla {2}." +msgstr "Red {0}: Račun Troškova je promijenjen u {1} jer se nije izradio Nabavni Račun naspram artikla {2}." #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:73 msgid "Row {0}: Expense Head changed to {1} because expense is booked against this account in Purchase Receipt {2}" @@ -47397,7 +47509,7 @@ msgstr "Red {0}: Predložak Pdv-a za Artikal {1} ažuriran je u skladu s važeć #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" -msgstr "Red {0}: Cijena artikla je ažurirana prema stopi vrednovanja zato što je ovo interni prijenos zaliha" +msgstr "Red {0}: Cjena artikla je ažurirana prema stopi vrednovanja zato što je ovo interni prijenos zaliha" #: erpnext/controllers/subcontracting_controller.py:142 msgid "Row {0}: Item {1} must be a stock item." @@ -47417,7 +47529,7 @@ msgstr "Red {0}: Količina Artikla {1} ne može biti veća od raspoložive koli #: erpnext/manufacturing/doctype/bom/bom.py:949 msgid "Row {0}: Operation time should be greater than 0 for operation {1}" -msgstr "Red {0}: Vrijeme operacije treba biti veće od 0 za operaciju {1}" +msgstr "Red {0}: Vrijeme radnje treba biti veće od 0 za radnju {1}" #: erpnext/stock/doctype/delivery_note/services/packing.py:28 msgid "Row {0}: Packed Qty must be equal to {1} Qty." @@ -47425,7 +47537,7 @@ msgstr "Red {0}: Pakovana Količina mora biti jednaka {1} Količini." #: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." -msgstr "Red {0}: Otpremnica je već kreirana za artikal {1}." +msgstr "Red {0}: Otpremnica je već izrađena za artikal {1}." #: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:107 msgid "Row {0}: Party / Account does not match with {1} / {2} in {3} {4}" @@ -47501,7 +47613,7 @@ msgstr "Red {0}: Količina ne može biti negativna." #: erpnext/accounts/doctype/sales_invoice/services/timesheet_billing.py:24 msgid "Row {0}: Sales Invoice {1} is already created for {2}" -msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}" +msgstr "Red {0}: Prodajna Faktura {1} je već izrađena za {2}" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:301 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." @@ -47523,7 +47635,7 @@ msgstr "Red {0}: Ciljno Skladište je obavezno za interne transfere" msgid "Row {0}: Task {1} does not belong to Project {2}" msgstr "Red {0}: Zadatak {1} ne pripada Projektu {2}" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:178 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:187 msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated." msgstr "Red {0}: Cijeli iznos troška za račun {1} u {2} je već dodijeljen." @@ -47557,14 +47669,14 @@ msgstr "Red {0}: Skladište je obavezno" #: erpnext/stock/doctype/pick_list/pick_list.py:182 msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehouse belonging to company {3}." -msgstr "Red {0}: Skladište {1} je povezano sa {2}. Molimo odaberite skladište koje pripada {3}." +msgstr "Red {0}: Skladište {1} je povezano sa {2}. Odaberi skladište koje pripada {3}." #: erpnext/manufacturing/doctype/bom/bom.py:943 -#: erpnext/manufacturing/doctype/work_order/work_order.py:483 +#: erpnext/manufacturing/doctype/work_order/work_order.py:489 msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}" -msgstr "Red {0}: Radna Stanica ili Tip Radne Stanice je obavezan za operaciju {1}" +msgstr "Red {0}: Radna Stanica ili Tip Radne Stanice je obavezan za radnju {1}" -#: erpnext/controllers/accounts_controller.py:938 +#: erpnext/controllers/accounts_controller.py:865 msgid "Row {0}: user has not applied the rule {1} on the item {2}" msgstr "Red {0}: korisnik nije primijenio pravilo {1} na artikal {2}" @@ -47600,9 +47712,9 @@ msgstr "Red {0}: {2} Artikal {1} ne postoji u {2} {3}" msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Red {1}: Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogućite '{2}' u Jedinici {3}." -#: erpnext/controllers/buying_controller.py:1051 +#: erpnext/controllers/buying_controller.py:1059 msgid "Row {idx}: Asset Naming Series is mandatory for the auto creation of assets for item {item_code}." -msgstr "Red {idx}: Serija Imenovanja Imovine je obavezna za automatsko kreiranje sredstava za artikal {item_code}." +msgstr "Red {idx}: Serija Imenovanja Imovine je obavezna za automatsku izradu sredstava za artikal {item_code}." #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:84 msgid "Row({0}): Outstanding Amount cannot be greater than actual Outstanding Amount {1} in {2}" @@ -47634,7 +47746,7 @@ msgstr "Pronađeni su redovi sa dupliranim rokovima u drugim redovima: {0}" msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually." msgstr "Redovi: {0} imaju 'Unos Plaćanja' kao Tip Reference. Ovo ne treba postavljati ručno." -#: erpnext/controllers/accounts_controller.py:275 +#: erpnext/controllers/accounts_controller.py:279 msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "Redovi: {0} u {1} sekciji su nevažeći. Naziv reference treba da ukazuje na važeći Unos Plaćanja ili Nalog Knjiženja." @@ -47666,7 +47778,7 @@ msgstr "Naziv pravila" #: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:41 msgid "Rule created successfully" -msgstr "Pravilo je uspješno kreirano" +msgstr "Pravilo je uspješno izrađeno" #: banking/src/components/features/Settings/Rules/RuleList.tsx:149 msgid "Rule deleted." @@ -47713,8 +47825,8 @@ msgstr "Pokreni na novim transakcijama" msgid "Run parallel job cards in a workstation" msgstr "Pokreni paralelne radne kartice na radnom mjestu" -#: erpnext/public/js/templates/shop_floor_template.html:741 -#: erpnext/public/js/templates/shop_floor_template.html:743 +#: erpnext/public/js/templates/shop_floor_template.html:761 +#: erpnext/public/js/templates/shop_floor_template.html:763 msgid "Run quality check" msgstr "Pokreni Provjeru Kvalitete" @@ -47768,7 +47880,7 @@ msgstr "Standard Nivo Servisa Ispunjen na Status" msgid "SLA Paused On" msgstr "Standard Nivo Servisa Pauziran" -#: erpnext/public/js/utils.js:1268 +#: erpnext/public/js/utils.js:1280 msgid "SLA is on hold since {0}" msgstr "Standard Nivo Servisa je na Čekanju od {0}" @@ -47832,7 +47944,7 @@ msgstr "Sigurnosna Zaliha" #: erpnext/setup/doctype/employee/employee.json #: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json msgid "Salary" -msgstr "Plata" +msgstr "Plaća" #. Label of the salary_currency (Link) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -47865,8 +47977,8 @@ msgstr "Način Plate" #: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143 #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/company/company.py:525 -#: erpnext/setup/doctype/company/company.py:718 +#: erpnext/setup/doctype/company/company.py:527 +#: erpnext/setup/doctype/company/company.py:720 #: erpnext/setup/doctype/company/company_dashboard.py:9 #: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12 #: erpnext/setup/install.py:408 @@ -47881,7 +47993,7 @@ msgstr "Prodaja" msgid "Sales & Purchase" msgstr "Prodaja & Nabava" -#: erpnext/setup/doctype/company/company.py:718 +#: erpnext/setup/doctype/company/company.py:720 msgid "Sales Account" msgstr "Prodajni Račun" @@ -47947,7 +48059,7 @@ msgstr "Lijevak Prodaje" #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Sales Incoming Rate" -msgstr "Prodajna Ulazna Cijena" +msgstr "Prodajna Ulazna Cjena" #. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry #. Account' @@ -47979,8 +48091,8 @@ msgstr "Prodajna Ulazna Cijena" #: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json #: erpnext/accounts/print_format/sales_auditing_voucher/sales_auditing_voucher.html:5 #: erpnext/accounts/report/gross_profit/gross_profit.js:30 -#: erpnext/accounts/report/gross_profit/gross_profit.py:287 -#: erpnext/accounts/report/gross_profit/gross_profit.py:294 +#: erpnext/accounts/report/gross_profit/gross_profit.py:289 +#: erpnext/accounts/report/gross_profit/gross_profit.py:296 #: erpnext/crm/doctype/contract/contract.json #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json @@ -48065,7 +48177,7 @@ msgstr "Prodajna Faktura je već objedinjena" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:186 msgid "Sales Invoice is not created using POS" -msgstr "Prodajna Faktura nije kreirana pomoću Kase" +msgstr "Prodajna Faktura nije izrađena pomoću Kase" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:192 msgid "Sales Invoice is not submitted" @@ -48073,13 +48185,13 @@ msgstr "Prodajna Faktura nije podnešena" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 msgid "Sales Invoice isn't created by user {0}" -msgstr "Prodajna Faktura nije kreirana od {0}" +msgstr "Prodajna Faktura nije izrađena od {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." -msgstr "U Kasi je aktiviran način Prodajne Fakture. Umjesto toga kreiraj Prodajnu Fakturu." +msgstr "U Kasi je aktiviran način Prodajne Fakture. Umjesto toga izradi Prodajnu Fakturu." -#: erpnext/stock/doctype/delivery_note/delivery_note.py:614 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:631 msgid "Sales Invoice {0} has already been submitted" msgstr "Prodajna Faktura {0} je već podnešena" @@ -48131,7 +48243,6 @@ msgstr "Mogućnos Prodaje prema Izvoru" #. Label of the sales_order (Link) field in DocType 'Purchase Receipt Item' #. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation #. Entry' -#. Label of a Link in the Subcontracting Workspace #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json @@ -48171,7 +48282,7 @@ msgstr "Mogućnos Prodaje prema Izvoru" #: erpnext/setup/doctype/authorization_rule/authorization_rule.json #: erpnext/stock/doctype/delivery_note/delivery_note.js:157 #: erpnext/stock/doctype/delivery_note/delivery_note.js:223 -#: erpnext/stock/doctype/material_request/material_request.js:236 +#: erpnext/stock/doctype/material_request/material_request.js:239 #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -48180,9 +48291,7 @@ msgstr "Mogućnos Prodaje prema Izvoru" #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:159 #: erpnext/stock/report/delayed_order_report/delayed_order_report.js:30 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:74 -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json #: erpnext/workspace_sidebar/selling.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Sales Order" msgstr "Prodajni Nalog" @@ -48285,7 +48394,7 @@ msgstr "Prodajni Nalog je obavezan za Artikal {0}" msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}" msgstr "Prodajni Nalog {0} već postoji naspram Nabavnog Naloga Klijenta {1}. Da dozvolite višestruke Prodajne Naloge, omogući {2} u {3}" -#: erpnext/projects/doctype/project/project.py:256 +#: erpnext/projects/doctype/project/project.py:258 msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "Prodajni Nalog {0} je već povezan s projektom {1}, preskoči vezu." @@ -48294,11 +48403,11 @@ msgstr "Prodajni Nalog {0} je već povezan s projektom {1}, preskoči vezu." msgid "Sales Order {0} is not available for production" msgstr "Prodajni Nalog {0} nije dostupan za proizvodnju" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 msgid "Sales Order {0} is not submitted" msgstr "Prodajni Nalog {0} nije podnešen" -#: erpnext/manufacturing/doctype/work_order/work_order.py:559 +#: erpnext/manufacturing/doctype/work_order/work_order.py:565 msgid "Sales Order {0} is not valid" msgstr "Prodajni Nalog {0} ne važi" @@ -48355,7 +48464,7 @@ msgstr "Prodajni Nalozi za Dostavu" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:130 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1254 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1256 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:114 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:196 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:74 @@ -48461,12 +48570,12 @@ msgstr "Sažetak Prodajnog Plaćanja" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:158 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:136 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1251 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1253 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:120 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:193 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:80 #: erpnext/accounts/report/gross_profit/gross_profit.js:50 -#: erpnext/accounts/report/gross_profit/gross_profit.py:402 +#: erpnext/accounts/report/gross_profit/gross_profit.py:404 #: erpnext/crm/workspace/crm/crm.json #: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json #: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json @@ -48526,7 +48635,7 @@ msgstr "Sažetak Transakcije Prodaje po Prodavaču" #: erpnext/selling/page/sales_funnel/sales_funnel.js:50 #: erpnext/workspace_sidebar/crm.json msgid "Sales Pipeline" -msgstr "Prodajni Cjevovod" +msgstr "Prodajni Proces" #. Name of a report #. Label of a Link in the CRM Workspace @@ -48534,15 +48643,15 @@ msgstr "Prodajni Cjevovod" #: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.json #: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json msgid "Sales Pipeline Analytics" -msgstr "Analiza Prodaje" +msgstr "Analiza Procesa Prodaje" #: erpnext/selling/page/sales_funnel/sales_funnel.js:157 msgid "Sales Pipeline by Stage" -msgstr "Prodaja po Fazama" +msgstr "Proces Prodaje po Fazama" #: erpnext/stock/report/item_prices/item_prices.py:58 msgid "Sales Price List" -msgstr "Prodajni Cijenovnik" +msgstr "Prodajni Cjenovnik" #. Name of a report #. Label of a Workspace Sidebar Item @@ -48556,7 +48665,7 @@ msgstr "Registar Prodaje" msgid "Sales Representative" msgstr "Predstavnik Prodaje" -#: erpnext/accounts/report/gross_profit/gross_profit.py:1004 +#: erpnext/accounts/report/gross_profit/gross_profit.py:1006 #: erpnext/stock/doctype/delivery_note/delivery_note.js:270 msgid "Sales Return" msgstr "Prodajni Povrat" @@ -48578,23 +48687,16 @@ msgid "Sales Summary" msgstr "Sažetak Prodaje" #. Label of the sales_tax_template (Link) field in DocType 'Tax Rule' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/setup/doctype/company/company.js:149 -#: erpnext/workspace_sidebar/taxes.json msgid "Sales Tax Template" -msgstr "Šablon Prodajnog PDV-a" +msgstr "Predložak Prodajnog PDV-a" #. Label of the sales_tax_withholding_category (Link) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Sales Tax Withholding Category" msgstr "Kategorija PDV Odbitka" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "Sales Taxes" -msgstr "PDV" - #. Label of the taxes (Table) field in DocType 'POS Invoice' #. Label of the taxes (Table) field in DocType 'Sales Invoice' #. Name of a DocType @@ -48635,7 +48737,7 @@ msgstr "Prodajni PDV i Naknade" #: erpnext/selling/workspace/selling/selling.json #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "Sales Taxes and Charges Template" -msgstr "Šablon Prodajnog PDV-a i Naknade" +msgstr "Predložak Prodajnog PDV-a i Naknade" #. Label of the section_break2 (Section Break) field in DocType 'POS Invoice' #. Label of the sales_team (Table) field in DocType 'POS Invoice' @@ -48658,7 +48760,7 @@ msgstr "Šablon Prodajnog PDV-a i Naknade" msgid "Sales Team" msgstr "Tim Prodaje" -#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:56 +#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:62 msgid "Sales Value" msgstr "Prodajna Vrijednost" @@ -48681,7 +48783,7 @@ msgstr "Reciklirana Vrijednost" #. Finance Book' #: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json msgid "Salvage Value Percentage" -msgstr "Procentualna Vrijednosti Recikliže" +msgstr "Postotna Vrijednosti Recikliže" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:41 msgid "Same Company is entered more than once" @@ -48719,7 +48821,7 @@ msgid "Sample Quantity" msgstr "Količina Uzorka" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:269 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:557 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:556 msgid "Sample Retention Stock Entry" msgstr "Unos Uzorka Zaliha" @@ -48746,7 +48848,7 @@ msgstr "Količina uzorka {0} ne može biti veća od primljene količine {1}" msgid "Sanctioned" msgstr "Sankcionisano" -#: erpnext/public/js/shop_floor/shop_floor.js:884 +#: erpnext/public/js/shop_floor/shop_floor.js:920 msgid "Save & Continue" msgstr "Spremi & Nastavi" @@ -48758,9 +48860,9 @@ msgstr "Spremi promjene i Učitaj Novu Fakturu" #: banking/src/components/features/Settings/KeyboardShortcuts.tsx:47 msgid "Save the currently opened form" -msgstr "Sačuvaj trenutno otvoreni obrazac" +msgstr "Spremi trenutno otvoreni obrazac" -#: erpnext/public/js/shop_floor/shop_floor.js:845 +#: erpnext/public/js/shop_floor/shop_floor.js:881 msgid "Saving job card..." msgstr "Spremanje Radne Kartice..." @@ -48790,7 +48892,7 @@ msgstr "Sazhen" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/barcode_scanner.js:236 +#: erpnext/public/js/utils/barcode_scanner.js:241 #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json @@ -48807,7 +48909,7 @@ msgid "Scan Batch No" msgstr "Skeniraj Broj Šarže" #: erpnext/public/js/shop_floor/shop_floor.js:88 -#: erpnext/public/js/shop_floor/shop_floor.js:1396 +#: erpnext/public/js/shop_floor/shop_floor.js:1431 msgid "Scan Job Card" msgstr "Skeniraj Radnu Karticu" @@ -48822,11 +48924,11 @@ msgstr "Način Skeniranja" msgid "Scan Serial No" msgstr "Skeniraj Serijski Broj" -#: erpnext/public/js/utils/barcode_scanner.js:200 +#: erpnext/public/js/utils/barcode_scanner.js:205 msgid "Scan barcode for item {0}" msgstr "Skenirajte bar kod za artikal {0}" -#: erpnext/public/js/shop_floor/shop_floor.js:1370 +#: erpnext/public/js/shop_floor/shop_floor.js:1405 msgid "Scan job card" msgstr "Skeniraj Radnu Karticu" @@ -48834,7 +48936,7 @@ msgstr "Skeniraj Radnu Karticu" msgid "Scan mode enabled, existing quantity will not be fetched." msgstr "Način skeniranja je omogućen, postojeća količina neće biti preuzeta." -#: erpnext/public/js/shop_floor/shop_floor.js:1399 +#: erpnext/public/js/shop_floor/shop_floor.js:1434 msgid "Scan or enter Job Card" msgstr "Skeniraj ili Unesi Radnu Karticu" @@ -48844,14 +48946,14 @@ msgstr "Skeniraj ili Unesi Radnu Karticu" msgid "Scanned Cheque" msgstr "Skenirani Ček" -#: erpnext/public/js/utils/barcode_scanner.js:268 +#: erpnext/public/js/utils/barcode_scanner.js:273 msgid "Scanned Quantity" msgstr "Skenirana Količina" #. Label of the schedule_date (Date) field in DocType 'Depreciation Schedule' #. Label of the schedule_date (Datetime) field in DocType 'Production Plan Sub #. Assembly Item' -#: erpnext/assets/doctype/asset/asset.js:383 +#: erpnext/assets/doctype/asset/asset.js:391 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json msgid "Schedule Date" @@ -48948,9 +49050,9 @@ msgstr "Radnja Bodovne Tablice" msgid "Scorecard variables can be used, as well as:\n" "{total_score} (the total score from that period),\n" "{period_number} (the number of periods to present day)\n" -msgstr "Mogu se koristiti varijable Bodovne Tablice, kao i:\n" -"{total_score} (ukupno bodovanje iz tog razdoblja),\n" -"{period_number} (broj razdoblja do današnjeg dana).\n" +msgstr "Mogu se koristiti varijable Bodovne Tabele, kao i:\n" +"{total_score} (ukupno bodovanje iz tog perioda),\n" +"{period_number} (broj perioda do današnjeg dana)\n" #: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:10 msgid "Scorecards" @@ -48987,7 +49089,7 @@ msgstr "Poredak Bodovanja" msgid "Scrap" msgstr "Otpad" -#: erpnext/assets/doctype/asset/asset.js:168 +#: erpnext/assets/doctype/asset/asset.js:176 msgid "Scrap Asset" msgstr "Rashodovana Imovina" @@ -49048,15 +49150,15 @@ msgstr "Pretraži poduzeće..." msgid "Search transactions" msgstr "Pretražite transakcije" -#: erpnext/stock/doctype/item/item.js:1095 +#: erpnext/stock/doctype/item/item.js:1116 msgid "Search values..." -msgstr "Vrijednosti Pretrage..." +msgstr "Pretraži vrijednosti..." -#: erpnext/public/js/shop_floor/shop_floor.js:1368 +#: erpnext/public/js/shop_floor/shop_floor.js:1403 msgid "Search work orders" msgstr "Pretraži radne naloge" -#: erpnext/public/js/shop_floor/shop_floor.js:150 +#: erpnext/public/js/shop_floor/shop_floor.js:176 msgid "Search work orders…" msgstr "Pretraga radnih naloga…" @@ -49121,7 +49223,7 @@ msgstr "Troškovi Sekundarnih Artikala prema Količini" #. 'Subcontracting Inward Order' #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json msgid "Secondary Items Generated" -msgstr "Generisan Sekundarni Artikli" +msgstr "Izrađen Sekundarni Artikli" #. Label of the secondary_party (Dynamic Link) field in DocType 'Party Link' #: erpnext/accounts/doctype/party_link/party_link.json @@ -49162,23 +49264,23 @@ msgstr "Pogledaj Sve Otvorene Karte" #: banking/src/components/common/AccountsDropdown.tsx:132 #: banking/src/components/common/AccountsDropdown.tsx:148 msgid "Select Account" -msgstr "Odaberite račun" +msgstr "Odaberi račun" #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:23 msgid "Select Accounting Dimension." msgstr "Odaberi Knjigovodstvenu Dimenziju." -#: erpnext/public/js/utils.js:572 +#: erpnext/public/js/utils.js:584 msgid "Select Alternate Item" msgstr "Odaberi Alternativni Artikal" #: erpnext/selling/doctype/quotation/quotation.js:341 msgid "Select Alternative Items for Sales Order" -msgstr "Odaberite Alternativni Artikal za Prodajni Nalog" +msgstr "Odaberi Alternativni Artikal za Prodajni Nalog" -#: erpnext/stock/doctype/item/item.js:1221 +#: erpnext/stock/doctype/item/item.js:1242 msgid "Select Attribute Values" -msgstr "Odaberite Vrijednosti Atributa" +msgstr "Odaberi Vrijednosti Atributa" #: erpnext/selling/doctype/sales_order/sales_order.js:1334 msgid "Select BOM" @@ -49188,9 +49290,9 @@ msgstr "Odaberi Sastavnicu" msgid "Select BOM and Qty for Production" msgstr "Odaberi Sastavnicu i Količinu za Proizvodnju" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:449 -#: erpnext/stock/doctype/pick_list/pick_list.js:398 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:243 +#: erpnext/public/js/utils/sales_common.js:447 +#: erpnext/stock/doctype/pick_list/pick_list.js:399 msgid "Select Batch No" msgstr "Odaberi Broj Šarže" @@ -49220,17 +49322,17 @@ msgstr "Odaberi Adresu Poduzeća" #: erpnext/manufacturing/doctype/job_card/job_card.js:476 msgid "Select Corrective Operation" -msgstr "Odaberi Popravnu Operaciju" +msgstr "Odaberi Popravnu Radnju" #. Label of the customer_collection (Select) field in DocType 'Process #. Statement Of Accounts' #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json msgid "Select Customers By" -msgstr "Odaberite Klijente po" +msgstr "Odaberi Klijente po" #: erpnext/setup/doctype/employee/employee.js:244 msgid "Select Date of Birth. This will validate Employees age and prevent hiring of under-age staff." -msgstr "Navedi Datum Rođenja. Ovo će potvrditi dob personala i spriječiti zapošljavanje maloljetnih osoba." +msgstr "Navedi Datum Rođenja. Ovo će potvrditi dob Osoblja i spriječiti zapošljavanje maloljetnih osoba." #: erpnext/setup/doctype/employee/employee.js:251 msgid "Select Date of joining. It will have impact on the first salary calculation, Leave allocation on pro-rata bases." @@ -49256,7 +49358,7 @@ msgstr "Odaberi Otpremnu Adresu " #: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" -msgstr "Navedi Personal" +msgstr "Odaberi Osoblje" #: erpnext/buying/doctype/purchase_order/purchase_order.js:174 #: erpnext/selling/doctype/sales_order/sales_order.js:862 @@ -49317,20 +49419,20 @@ msgstr "Odaberi Raspored Plaćanja" msgid "Select Possible Supplier" msgstr "Odaberi Mogućeg Dobavljača" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1125 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1129 #: erpnext/stock/doctype/pick_list/pick_list.js:224 msgid "Select Quantity" msgstr "Odaberi Količinu" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:449 -#: erpnext/stock/doctype/pick_list/pick_list.js:398 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:243 +#: erpnext/public/js/utils/sales_common.js:447 +#: erpnext/stock/doctype/pick_list/pick_list.js:399 msgid "Select Serial No" msgstr "Odaberi Serijski Broj" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:452 -#: erpnext/stock/doctype/pick_list/pick_list.js:401 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:246 +#: erpnext/public/js/utils/sales_common.js:450 +#: erpnext/stock/doctype/pick_list/pick_list.js:402 msgid "Select Serial and Batch" msgstr "Odaberi Serijski Broj I Šaržu" @@ -49355,8 +49457,8 @@ msgstr "Odaberi Ciljno Skladište" msgid "Select Time" msgstr "Odaberi Vrijeme" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:28 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:28 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:35 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:35 msgid "Select View" msgstr "Odaberi Prikaz" @@ -49368,7 +49470,7 @@ msgstr "Odaberi Verifikate za Usklađivanje" msgid "Select Warehouse..." msgstr "Odaberi Skladište..." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:551 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:578 msgid "Select Warehouses to get Stock for Materials Planning" msgstr "Odaberi Skladišta ta preuzimanje Zalihe za Planiranje Materijala" @@ -49378,9 +49480,9 @@ msgstr "Odaberi Poduzeće" #: erpnext/setup/doctype/employee/employee.js:239 msgid "Select a Company this Employee belongs to." -msgstr "Navedi Poduzeće kojoj ovaj personal pripada." +msgstr "Odaberi Poduzeće kojoj ovo Osoblje pripada." -#: erpnext/buying/doctype/supplier/supplier.js:221 +#: erpnext/buying/doctype/supplier/supplier.js:230 msgid "Select a Customer" msgstr "Odaberi Klijenta" @@ -49392,25 +49494,25 @@ msgstr "Odaberi Standard Prioritet." msgid "Select a Payment Method." msgstr "Odaberi način plaćanja." -#: erpnext/selling/doctype/customer/customer.js:253 +#: erpnext/selling/doctype/customer/customer.js:262 msgid "Select a Supplier" msgstr "Odaberi Dobavljača" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:49 msgid "Select a bank account to reconcile" -msgstr "Odaberite bankovni račun za usklađivanje" +msgstr "Odaberi bankovni račun za usklađivanje" #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:161 msgid "Select a company" msgstr "Odaberi Poduzeće" -#: erpnext/public/js/shop_floor/shop_floor.js:421 +#: erpnext/public/js/shop_floor/shop_floor.js:449 msgid "Select a machine or work order to begin" msgstr "Odaberi mašinu ili radni nalog za početak" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:396 msgid "Select a transaction to match and reconcile with vouchers" -msgstr "Odaberite transakciju za usklađivanje i poravnanje s računima" +msgstr "Odaberi transakciju za usklađivanje i poravnanje s računima" #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:562 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:679 @@ -49419,7 +49521,7 @@ msgstr "Odaberite transakciju za usklađivanje i poravnanje s računima" msgid "Select all" msgstr "Odaberi sve" -#: erpnext/stock/doctype/item/item.js:1563 +#: erpnext/stock/doctype/item/item.js:1584 msgid "Select an Item Group." msgstr "Odaberi Grupu Artikla." @@ -49436,9 +49538,9 @@ msgstr "Odaberi fakturu za učitavanje sažetih podataka" msgid "Select an item from each set to be used in the Sales Order." msgstr "Odaber artikal iz svakog skupa koja će se koristiti u Prodajnom Nalogu." -#: erpnext/stock/doctype/item/item.js:1235 +#: erpnext/stock/doctype/item/item.js:1256 msgid "Select at least one attribute value." -msgstr "Odaberite barem jednu vrijednost atributa." +msgstr "Odaberi barem jednu vrijednost atributa." #: erpnext/public/js/utils/party.js:379 msgid "Select company first" @@ -49448,13 +49550,13 @@ msgstr "Odaberi Poduzeće" #. Person' #: erpnext/setup/doctype/sales_person/sales_person.json msgid "Select company name first." -msgstr "Odaberite Naziv Poduzeća." +msgstr "Odaberi Naziv Poduzeća." #: banking/src/components/ui/form-elements.tsx:159 msgid "Select date" msgstr "Odaberi datum" -#: erpnext/controllers/accounts_controller.py:1403 +#: erpnext/controllers/accounts_controller.py:1330 msgid "Select finance book for the item {0} at row {1}" msgstr "Odaberi Finansijski Registar za artikal {0} u redu {1}" @@ -49468,7 +49570,7 @@ msgstr "Odaberi broj dana" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:230 msgid "Select one or more Purchase Invoice rows" -msgstr "Odaberite jedan ili više redova Fakture Nabave" +msgstr "Odaberi jedan ili više redova Fakture Nabave" #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:581 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:699 @@ -49479,7 +49581,7 @@ msgstr "Odaberi red {0}" #: erpnext/manufacturing/doctype/bom/bom.js:476 msgid "Select template item" -msgstr "Odaberi Artikal Šablona" +msgstr "Odaberi Artikal Predloška" #. Description of the 'Bank Account' (Link) field in DocType 'Bank Clearance' #: erpnext/accounts/doctype/bank_clearance/bank_clearance.json @@ -49488,26 +49590,26 @@ msgstr "Odaberi Bankovni Račun za usaglašavanje." #: erpnext/manufacturing/doctype/operation/operation.js:25 msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders." -msgstr "Odaberi Standard Radnu Stanicu na kojoj će se izvoditi operacija. Ovo će se preuzeti u Spiskovima Materijala i Radnim Nalozima." +msgstr "Odaberi Standard Radnu Stanicu na kojoj će se izvoditi radnja. Ovo će se preuzeti u Spiskovima Materijala i Radnim Nalozima." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1231 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1242 msgid "Select the Item to be manufactured." msgstr "Odaberi Artikal za Proizvodnju." -#: erpnext/manufacturing/doctype/bom/bom.js:988 +#: erpnext/manufacturing/doctype/bom/bom.js:992 msgid "Select the Item to be manufactured. The Item name, UoM, Company, and Currency will be fetched automatically." msgstr "Odaberi Artikal za Proizvodnju. Naziv Artikla, Jedinica, Poduzeće i Valuta će se automatski preuzeti." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:432 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:445 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 msgid "Select the Warehouse" msgstr "Odaberi Skladište" #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:47 msgid "Select the customer or supplier." -msgstr "Odaberite Klijenta ili Dobavljača." +msgstr "Odaberi Klijenta ili Dobavljača." -#: erpnext/assets/doctype/asset/asset.js:940 +#: erpnext/assets/doctype/asset/asset.js:948 msgid "Select the date" msgstr "Odaberi datum" @@ -49519,25 +49621,25 @@ msgstr "Odaberi Datum i Vremensku Zonu" #. 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Select the group first to filter the applicable withholding categories below." -msgstr "Prvo odaberite grupu kako biste filtrirali primjenjive kategorije obustave u nastavku." +msgstr "Prvo Odaberi grupu kako biste filtrirali primjenjive kategorije obustave u nastavku." #: erpnext/public/js/setup_wizard.js:89 msgid "Select the modules that you plan to implement" msgstr "Odaberi module koje planirate implementirati" -#: erpnext/manufacturing/doctype/bom/bom.js:1007 +#: erpnext/manufacturing/doctype/bom/bom.js:1011 msgid "Select the raw materials (Items) required to manufacture the Item" -msgstr "Odaberite Sirovine (Artikle) obavezne za proizvodnju artikla" +msgstr "Odaberi Sirovine (Artikle) obavezne za proizvodnju artikla" #: erpnext/manufacturing/doctype/bom/bom.js:531 msgid "Select variant item code for the template item {0}" -msgstr "Odaberite kod varijante artikla za šablon {0}" +msgstr "Odaberi kod varijante artikla za predložak {0}" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:708 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:735 msgid "Select whether to get items from a Sales Order or a Material Request. For now select Sales Order.\n" " A Production Plan can also be created manually where you can select the Items to manufacture." msgstr "Odaberi hoćete li preuzeti artikle iz Prodajnog Naloga ili Materijalnog Naloga. Za sada odaberi Prodajni Nalog.\n" -" Plan Proizvodnje se može kreirati i ručno gdje možete odabrati artikle za proizvodnju." +" Plan Proizvodnje se može izraditi i ručno gdje možete odabrati artikle za proizvodnju." #: erpnext/setup/doctype/holiday_list/holiday_list.js:65 msgid "Select your weekly off day" @@ -49555,7 +49657,7 @@ msgstr "Odabrani Početni Unos Kase bi trebao biti otvoren." #: erpnext/accounts/doctype/sales_invoice/mapper.py:158 msgid "Selected Price List should have buying and selling fields checked." -msgstr "Odabrani Cijenovnik treba da ima označena polja za Nabavu i Prodaju." +msgstr "Odabrani Cjenovnik treba da ima označena polja za Nabavu i Prodaju." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123 msgid "Selected Print Format does not exist." @@ -49588,22 +49690,22 @@ msgstr "Odabrani {0} ne sadrži Šifru Artikla {1}" msgid "Self delivery" msgstr "Samostalna Dostava" -#: erpnext/assets/doctype/asset/asset.js:647 +#: erpnext/assets/doctype/asset/asset.js:655 #: erpnext/stock/doctype/batch/batch_dashboard.py:9 #: erpnext/stock/doctype/item/item_dashboard.py:20 msgid "Sell" msgstr "Prodaja" -#: erpnext/assets/doctype/asset/asset.js:176 -#: erpnext/assets/doctype/asset/asset.js:636 +#: erpnext/assets/doctype/asset/asset.js:184 +#: erpnext/assets/doctype/asset/asset.js:644 msgid "Sell Asset" msgstr "Prodaj Imovinu" -#: erpnext/assets/doctype/asset/asset.js:641 +#: erpnext/assets/doctype/asset/asset.js:649 msgid "Sell Qty" msgstr "Prodajna Količina" -#: erpnext/assets/doctype/asset/asset.js:657 +#: erpnext/assets/doctype/asset/asset.js:665 msgid "Sell quantity cannot exceed the asset quantity" msgstr "Prodajna Količina ne može premašiti količinu imovine" @@ -49611,7 +49713,7 @@ msgstr "Prodajna Količina ne može premašiti količinu imovine" msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)." msgstr "Prodajna Količina ne može premašiti količinu imovine. Imovina {0} ima samo {1} artikala." -#: erpnext/assets/doctype/asset/asset.js:653 +#: erpnext/assets/doctype/asset/asset.js:661 msgid "Sell quantity must be greater than zero" msgstr "Prodajna Količina mora biti veća od nule" @@ -49645,7 +49747,7 @@ msgstr "Prodajna Količina mora biti veća od nule" msgid "Selling" msgstr "Prodaja" -#: erpnext/accounts/report/gross_profit/gross_profit.py:361 +#: erpnext/accounts/report/gross_profit/gross_profit.py:363 msgid "Selling Amount" msgstr "Prodajni Iznos" @@ -49658,12 +49760,12 @@ msgstr "Centar Troškova Prodaje" #: erpnext/stock/report/item_price_stock/item_price_stock.py:48 msgid "Selling Price List" -msgstr "Prodajni Cijenovnik" +msgstr "Prodajni Cjenovnik" #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:36 #: erpnext/stock/report/item_price_stock/item_price_stock.py:54 msgid "Selling Rate" -msgstr "Prodajna Cijena" +msgstr "Prodajna Cjena" #. Name of a DocType #. Label of a Link in the Selling Workspace @@ -49682,7 +49784,7 @@ msgstr "Postavke Prodaje" msgid "Selling Setup" msgstr "Postavljanje Prodaje" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:214 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:232 msgid "Selling must be checked, if Applicable For is selected as {0}" msgstr "Prodaja mora biti provjerena, ako je Primjenjivo za odabrano kao {0}" @@ -49880,7 +49982,7 @@ msgstr "Postavke Serijskog Artikla" #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:170 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json @@ -49917,7 +50019,7 @@ msgstr "Serijski Broj / Šarža" msgid "Serial No Already Assigned" msgstr "Serijski broj je već dodijeljen" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:299 msgid "Serial No Bundle is mandatory for Item {0}" msgstr "Paket Serijskih Brojeva je obavezan za artikal {0}" @@ -49938,11 +50040,11 @@ msgstr "Serijski Broj Registar" msgid "Serial No Range" msgstr "Serijski Broj Raspon" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2762 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2768 msgid "Serial No Reserved" msgstr "Rezervisan Serijski Broj" -#: erpnext/stock/doctype/item/item.py:496 +#: erpnext/stock/doctype/item/item.py:501 msgid "Serial No Series Overlap" msgstr "Preklapa se Serijski broj Šarže" @@ -49995,7 +50097,7 @@ msgstr "Serijski Broj i birač Šarže ne mogu se koristiti kada je omogućeno K msgid "Serial No and Batch Traceability" msgstr "Pratljivost Serijskog Broja i Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1228 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1229 msgid "Serial No is mandatory" msgstr "Serijski Broj je Obavezan" @@ -50007,7 +50109,7 @@ msgstr "Serijski Broj je obavezan za artikal {0}" msgid "Serial No {0} already exists" msgstr "Serijski Broj {0} već postoji" -#: erpnext/public/js/utils/barcode_scanner.js:342 +#: erpnext/public/js/utils/barcode_scanner.js:347 msgid "Serial No {0} already scanned" msgstr "Serijski Broj {0} je već skeniran" @@ -50021,15 +50123,15 @@ msgstr "Serijski Broj {0} ne pripada Artiklu {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3560 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3566 msgid "Serial No {0} does not exist" msgstr "Serijski Broj {0} ne postoji" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:379 msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "Serijski broj {0} je već dostavljen. Ne možete ga ponovno koristiti u unosu Proizvodnje / Ponovnog pakiranja." -#: erpnext/public/js/utils/barcode_scanner.js:435 +#: erpnext/public/js/utils/barcode_scanner.js:443 msgid "Serial No {0} is already added" msgstr "Serijski Broj {0} je već dodan" @@ -50037,7 +50139,7 @@ msgstr "Serijski Broj {0} je već dodan" msgid "Serial No {0} is already assigned to customer {1}. Can only be returned against the customer {1}" msgstr "Serijski broj {0} je već dodijeljen {1}. Može se vratiti samo ako je od {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:483 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:484 msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Serijski broj {0} nije u {1} {2}, i ne može se vratiti naspram {1} {2}" @@ -50057,12 +50159,12 @@ msgstr "Serijski Broj {0} nije pronađen" msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Serijski Broj: {0} izršena transakcija u drugoj Kasa Fakturi." -#: erpnext/public/js/utils/barcode_scanner.js:292 +#: erpnext/public/js/utils/barcode_scanner.js:297 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 #: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:170 msgid "Serial Nos" msgstr "Serijski Broj" @@ -50076,15 +50178,15 @@ msgstr "Serijski Broj / Šaržni Broj" msgid "Serial Nos / Batches" msgstr "Serijski Brojevi / Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2029 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2030 msgid "Serial Nos are created successfully" -msgstr "Serijski Brojevi su uspješno kreirani" +msgstr "Serijski Brojevi su uspješno izrađeni" -#: erpnext/stock/stock_ledger.py:2442 +#: erpnext/stock/stock_ledger.py:2490 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Serijski brojevi su rezervisani u unosima za rezervacije zaliha, morate ih opozvati prije nego što nastavite." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:384 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:385 msgid "Serial Nos {0} are already Delivered. You cannot use them again in Manufacture / Repack entry." msgstr "Serijski brojevi {0} su već isporučeni. Ne možete ih ponovno koristiti u Proizvodnji / Ponovno pakiranje." @@ -50149,7 +50251,7 @@ msgstr "Serijski i Šarža" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:156 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:138 #: erpnext/stock/doctype/stock_settings/stock_settings.json #: erpnext/stock/report/available_serial_no/available_serial_no.py:188 #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31 @@ -50161,19 +50263,19 @@ msgstr "Serijski i Šarža" msgid "Serial and Batch Bundle" msgstr "Serijski i Šaržni Paket" -#: erpnext/stock/doctype/item/item.py:1150 +#: erpnext/stock/doctype/item/item.py:1155 msgid "Serial and Batch Bundle Exists" msgstr "Serijski i Šaržni Paket Postoji" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2265 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2267 msgid "Serial and Batch Bundle created" -msgstr "Serijski i Šaržni Paket je kreiran" +msgstr "Serijski i Šaržni Paket je izrađen" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2359 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2363 msgid "Serial and Batch Bundle updated" msgstr "Serijski i Šaržni Paket je ažuriran" -#: erpnext/stock/services/serial_batch_bundle_service.py:99 +#: erpnext/stock/services/serial_batch_bundle_service.py:101 msgid "Serial and Batch Bundle {0} is already used in {1} {2}." msgstr "Serijski i Šaržni Paket {0} se već koristi u {1} {2}." @@ -50181,7 +50283,7 @@ msgstr "Serijski i Šaržni Paket {0} se već koristi u {1} {2}." msgid "Serial and Batch Bundle {0} is not submitted" msgstr "Serijski i Šaržni Paket {0} nije podnešen" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2335 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2337 msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "Serijski i Šaržni Paket {0} je podnešen i njegovi unosi se ne mogu mijenjati." @@ -50209,7 +50311,7 @@ msgstr "Unos Serijskog Broja i Šarže" msgid "Serial and Batch No" msgstr "Serijski i Šaržni Broj" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:152 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:153 msgid "Serial and Batch No for Item Disabled" msgstr "Serijski i Šaržni Broj su onemogućeni za artikal" @@ -50250,7 +50352,7 @@ msgstr "Serijski brojevi nedostupni za artikal {0} u skladištu {1}. Pokušaj pr msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Numerička Serija za unos Amortizacije Imovine (Nalog Knjiženja)" -#: erpnext/buying/doctype/supplier/supplier.py:143 +#: erpnext/buying/doctype/supplier/supplier.py:151 msgid "Series is mandatory" msgstr "Numerička Serija je obavezna" @@ -50266,7 +50368,7 @@ msgstr "Servis Adresa" #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Service Cost Per Qty" -msgstr "Cijena Servisa po Kolicini" +msgstr "Cjena Servisa po Kolicini" #. Name of a DocType #: erpnext/support/doctype/service_day/service_day.json @@ -50365,7 +50467,7 @@ msgstr "Standard Nivo Servisa" #. 'Issue' #: erpnext/support/doctype/issue/issue.json msgid "Service Level Agreement Creation" -msgstr "Kreiranje Standardnog Nivoa Servisa" +msgstr "Izrada Standardnog Nivoa Servisa" #. Label of the service_level_section (Section Break) field in DocType 'Issue' #: erpnext/support/doctype/issue/issue.json @@ -50381,7 +50483,7 @@ msgstr "Status Standardnog Nivoa Servisa" msgid "Service Level Agreement for {0} {1} already exists." msgstr "Ugovor Standard Nivo Servisa za {0} {1} već postoji." -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:771 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:774 msgid "Service Level Agreement has been changed to {0}." msgstr "Ugovor Standard Nivo Servisa je promijenjen u {0}." @@ -50474,7 +50576,7 @@ msgstr "Postavi Predujam i Dodijeli (FIFO)" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:827 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" -msgstr "Postavi osnovnu cijenu ručno" +msgstr "Postavi osnovnu cjenu ručno" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:180 msgid "Set Default Supplier" @@ -50520,7 +50622,7 @@ msgstr "Postavi Proračun po grupama za ovaj Distrikt. Takođe možete uključit #. DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Set Landed Cost Based on Purchase Invoice Rate" -msgstr "Odredi obračunatu cijenu na temelju cijene Kupovne Fakture" +msgstr "Odredi obračunatu cjenu na temelju cjene Nabavne Fakture" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1243 msgid "Set Loyalty Program" @@ -50530,7 +50632,7 @@ msgstr "Postavi Program Lojalnosti" msgid "Set New Release Date" msgstr "Postavi Novi Datum Izdavanja" -#: erpnext/stock/doctype/item/item.js:203 +#: erpnext/stock/doctype/item/item.js:218 msgid "Set Opening Stock" msgstr "Postavi Početne Zalihe" @@ -50548,14 +50650,14 @@ msgstr "Postavi Operativni Trošak na osnovu količine Sastavnice" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:124 msgid "Set Parent Row No in Items Table" -msgstr "Postavite Broj Nadređenog Reda u Tabeli Artikala" +msgstr "Postavi Broj Nadređenog Reda u Tabeli Artikala" #. Label of the set_posting_date (Check) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json msgid "Set Posting Date" msgstr "Postavi Datum Knjiženja" -#: erpnext/manufacturing/doctype/bom/bom.js:1034 +#: erpnext/manufacturing/doctype/bom/bom.js:1038 msgid "Set Process Loss Item Quantity" msgstr "Postavi količinu gubitka artikla u procesu" @@ -50591,7 +50693,7 @@ msgstr "Postavi Imenovanje Serijskog i Šaržnog Paketa na osnovu Imenovanja Ser #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:574 +#: erpnext/public/js/utils/sales_common.js:572 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50609,7 +50711,7 @@ msgstr "Postavi Dobavljača" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:571 +#: erpnext/public/js/utils/sales_common.js:569 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50635,7 +50737,7 @@ msgstr "Postavi kao Zatvoreno" msgid "Set as Completed" msgstr "Postavi kao Završeno" -#: erpnext/public/js/utils/sales_common.js:598 +#: erpnext/public/js/utils/sales_common.js:596 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Postavi kao Izgubljeno" @@ -50656,17 +50758,17 @@ msgstr "Postavi kao Otvoreno" #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json #: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json msgid "Set by Item Tax Template" -msgstr "Postavljeno prema Šablonu PDV-a za Artikal" +msgstr "Postavljeno prema Predložku PDV-a za Artikal" #: banking/src/components/features/BankReconciliation/BankBalance.tsx:248 msgid "Set closing balance as per bank statement" -msgstr "Postavite završno stanje prema bankovnom izvodu" +msgstr "Postavi završno stanje prema bankovnom izvodu" -#: erpnext/setup/doctype/company/company.py:615 +#: erpnext/setup/doctype/company/company.py:617 msgid "Set default inventory account for perpetual inventory" msgstr "Postavi Standard Račun Zaliha za Stalno Upravljanje Zalihama" -#: erpnext/setup/doctype/company/company.py:641 +#: erpnext/setup/doctype/company/company.py:643 msgid "Set default {0} account for non stock items" msgstr "Postavi Standard Račun {0} za artikle za koje se nevode zalihe" @@ -50680,9 +50782,9 @@ msgstr "Postavi ime polja iz kojeg želite da preuzmete podatke iz nadređenog o #. 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Set incoming rate as zero for expired Batch" -msgstr "Postavi nabavnu cijenu kao nulu za isteklu Šaržu" +msgstr "Postavi nabavnu cjenu kao nulu za isteklu Šaržu" -#: erpnext/manufacturing/doctype/bom/bom.js:1024 +#: erpnext/manufacturing/doctype/bom/bom.js:1028 msgid "Set quantity of process loss item:" msgstr "Postavi količinu artikla gubitka u procesa:" @@ -50690,7 +50792,7 @@ msgstr "Postavi količinu artikla gubitka u procesa:" #. DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "Set rate of sub-assembly item based on BOM" -msgstr "Postavi cijenu artikla podsklopa na osnovu Sastavnice" +msgstr "Postavi cjenu artikla podsklopa na osnovu Sastavnice" #. Description of the 'Sales Person Targets' (Section Break) field in DocType #. 'Sales Person' @@ -50698,14 +50800,14 @@ msgstr "Postavi cijenu artikla podsklopa na osnovu Sastavnice" msgid "Set targets Item Group-wise for this Sales Person." msgstr "Postavi ciljeve Grupno po Artiklu za ovog Prodavača." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1288 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1299 msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)" msgstr "Postavi Planirani Datum Početka (procijenjeni datum na koji želite da počne proizvodnja)" #: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:261 #: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:306 msgid "Set the clearance date for this voucher without reconciling with a bank transaction." -msgstr "Postavite datum poravnanja za ovaj verifikat bez usklađivanja s bankovnom transakcijom." +msgstr "Postavi datum poravnanja za ovaj verifikat bez usklađivanja s bankovnom transakcijom." #. Description of the 'Manual Inspection' (Check) field in DocType 'Quality #. Inspection Reading' @@ -50721,11 +50823,11 @@ msgstr "Podesi ovo ako je korisnik poduzeća iz Javne Uprave." #. Settings' #: erpnext/support/doctype/support_settings/support_settings.json msgid "Set this value to 0 to disable the feature." -msgstr "Postavite ovu vrijednost na 0 da biste onemogućili funkciju." +msgstr "Postavi ovu vrijednost na 0 da biste onemogućili funkciju." #: banking/src/components/features/Settings/MatchingRules.tsx:37 msgid "Set up rules to automatically classify transactions. Drag and drop rules to reorder their priority." -msgstr "Postavite pravila za automatsku klasifikaciju transakcija. Povucite i ispustite pravila kako biste promijenili njihov prioritet." +msgstr "Postavi pravila za automatsku klasifikaciju transakcija. Povucite i ispustite pravila kako biste promijenili njihov prioritet." #. Label of the set_valuation_rate_for_rejected_materials (Check) field in #. DocType 'Buying Settings' @@ -50788,7 +50890,7 @@ msgstr "Postavljanje Tipa Računa pomaže pri odabiru Računa u transakcijama." #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:129 msgid "Setting Events to {0}, since the Employee attached to the below Sales Persons does not have a User ID{1}" -msgstr "Postavljanje Događaja na {0}, budući da Personal vezan za ispod navedene Prodavače nema Korisnički ID{1}" +msgstr "Postavljanje Događaja na {0}, budući da Osoblje vezano za ispod navedene Prodavače nema Korisnički ID {1}" #: erpnext/stock/doctype/pick_list/pick_list.js:98 msgid "Setting Item Locations..." @@ -50809,7 +50911,7 @@ msgid "Setting up company" msgstr "Postavljanje Poduzeća" #: erpnext/manufacturing/doctype/bom/bom.py:919 -#: erpnext/manufacturing/doctype/work_order/work_order.py:929 +#: erpnext/manufacturing/doctype/work_order/work_order.py:935 msgid "Setting {0} is required" msgstr "Podešavanje {0} je neophodno" @@ -50880,44 +50982,34 @@ msgstr "Postavi Poduzeće" #. Label of the share_balance (Table) field in DocType 'Shareholder' #. Name of a report #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/share_balance/share_balance.json #: erpnext/accounts/doctype/shareholder/shareholder.js:21 #: erpnext/accounts/doctype/shareholder/shareholder.json #: erpnext/accounts/report/share_balance/share_balance.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Balance" msgstr "Stanje Dionica" #. Name of a report #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/shareholder/shareholder.js:27 #: erpnext/accounts/report/share_ledger/share_ledger.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Ledger" msgstr "Registar Dionica" #. Label of a Card Break in the Invoicing Workspace -#. Name of a Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/accounts/workspace/share_management/share_management.json #: erpnext/desktop_icon/share_management.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Management" msgstr "Dionice" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/share_transfer/share_transfer.json #: erpnext/accounts/report/share_ledger/share_ledger.py:59 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Transfer" msgstr "Prenos Dionica" @@ -50934,14 +51026,12 @@ msgstr "Tip Dionica" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/shareholder/shareholder.json #: erpnext/accounts/report/share_balance/share_balance.js:16 #: erpnext/accounts/report/share_balance/share_balance.py:55 #: erpnext/accounts/report/share_ledger/share_ledger.js:16 #: erpnext/accounts/report/share_ledger/share_ledger.py:51 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Shareholder" msgstr "Dioničar" @@ -50955,7 +51045,7 @@ msgid "Shelf Life in Days" msgstr "Rok Trajanja u Danima" #. Label of the shift (Link) field in DocType 'Depreciation Schedule' -#: erpnext/assets/doctype/asset/asset.js:396 +#: erpnext/assets/doctype/asset/asset.js:404 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Shift" msgstr "Smjena" @@ -51014,7 +51104,7 @@ msgstr "Paket Pošiljke" #. Name of a DocType #: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json msgid "Shipment Parcel Template" -msgstr "Šablon Paketa Pošiljke" +msgstr "Predložak Paketa Pošiljke" #. Label of the shipment_type (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json @@ -51027,7 +51117,7 @@ msgstr "Tip Pošiljke" msgid "Shipment details" msgstr "Detalji Pošiljke" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:644 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:661 msgid "Shipments" msgstr "Pošiljke" @@ -51063,7 +51153,7 @@ msgstr "Naziv Adrese Pošiljke" #. Label of the shipping_address (Link) field in DocType 'Purchase Receipt' #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json msgid "Shipping Address Template" -msgstr "Šablon Adrese Pošiljke" +msgstr "Predložak Adrese Pošiljke" #: erpnext/accounts/services/party_validation.py:208 msgid "Shipping Address does not belong to the {0}" @@ -51128,14 +51218,14 @@ msgstr "Pravilo Dostave" #. Name of a DocType #: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json msgid "Shipping Rule Condition" -msgstr "Uvjet Pravila Dostave" +msgstr "Uslov Pravila Dostave" #. Label of the rule_conditions_section (Section Break) field in DocType #. 'Shipping Rule' #. Label of the conditions (Table) field in DocType 'Shipping Rule' #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json msgid "Shipping Rule Conditions" -msgstr "Uvjeti Pravila Dostave" +msgstr "Uslovi Pravila Dostave" #. Name of a DocType #: erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.json @@ -51168,7 +51258,7 @@ msgstr "Pravilo Pošiljke nije primjenjivo za zemlju {0} u Adresu Pošiljke" #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:157 msgid "Shipping rule only applicable for Buying" -msgstr "Pravilo Pošiljke važi samo za Kupovinu" +msgstr "Pravilo Pošiljke važi samo za Nabavu" #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:152 msgid "Shipping rule only applicable for Selling" @@ -51177,8 +51267,8 @@ msgstr "Pravilo Pošiljke važi samo za Prodaju" #. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/workstation/workstation.js:18 #: erpnext/manufacturing/page/shop_floor/shop_floor.js:4 -#: erpnext/public/js/shop_floor/shop_floor.js:134 -#: erpnext/public/js/shop_floor/shop_floor.js:171 +#: erpnext/public/js/shop_floor/shop_floor.js:160 +#: erpnext/public/js/shop_floor/shop_floor.js:198 #: erpnext/workspace_sidebar/manufacturing.json msgid "Shop Floor" msgstr "Proizvodni Pogon" @@ -51194,9 +51284,9 @@ msgstr "Proizvodni Pogon" #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json msgid "Shopping Cart" -msgstr "Kupovna Korpa" +msgstr "Nabavna Korpa" -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Short" msgstr "Kratko" @@ -51348,14 +51438,14 @@ msgstr "Prikaži Otvoreno" msgid "Show Opening Entries" msgstr "Prikaži Početne Unose" -#: erpnext/accounts/report/cash_flow/cash_flow.js:43 +#: erpnext/accounts/report/cash_flow/cash_flow.js:50 msgid "Show Opening and Closing Balance" msgstr "Prikaži Početno i Završno Stanje" #. Label of the show_operations (Check) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "Show Operations" -msgstr "Prikaži Operacije" +msgstr "Prikaži Radnje" #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:40 msgid "Show Payment Details" @@ -51393,7 +51483,7 @@ msgstr "Prikaži Podatke Starenja Zaliha" msgid "Show Variant Attributes" msgstr "Prikaži Atribute Varijante" -#: erpnext/stock/doctype/item/item.js:227 +#: erpnext/stock/doctype/item/item.js:242 msgid "Show Variants" msgstr "Prikaži Varijante" @@ -51429,7 +51519,7 @@ msgstr "Prikaži na Web Stranici" #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Show inclusive tax in print" -msgstr "Prikaži cijene s PDV-om" +msgstr "Prikaži cjene s PDV-om" #. Description of the 'Reverse Sign' (Check) field in DocType 'Financial Report #. Row' @@ -51465,7 +51555,7 @@ msgstr "Prikaži unose na čekanju" msgid "Show taxes as table in print" msgstr "Prikaži PDV kao Tabelu" -#: erpnext/public/js/shop_floor/shop_floor.js:1367 +#: erpnext/public/js/shop_floor/shop_floor.js:1402 msgid "Show this help" msgstr "Prikaži ovu pomoć" @@ -51478,10 +51568,10 @@ msgstr "Prikaži stanje računa nezatvorene fiskalne godine" msgid "Show with upcoming revenue/expense" msgstr "Prikaži s nadolazećim prihodima/rashodima" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:51 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:58 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:137 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:75 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:52 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:59 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:71 #: erpnext/accounts/report/trial_balance/trial_balance.js:95 #: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:81 @@ -51492,9 +51582,9 @@ msgstr "Prikaži nulte vrijednosti" msgid "Show {0}" msgstr "Prikaži {0}" -#: erpnext/public/js/shop_floor/shop_floor.js:311 +#: erpnext/public/js/shop_floor/shop_floor.js:339 msgid "Showing all {0}" -msgstr "Prikazuju se svih {0}" +msgstr "Prikazuje se svih {0}" #. Description of the 'Work Instructions' (Text Editor) field in DocType #. 'Operation' @@ -51542,7 +51632,7 @@ msgstr "Detalji Potpisnika" #. Time' #: erpnext/stock/doctype/item_lead_time/item_lead_time.json msgid "Similar types of workstations where the same operations run in parallel." -msgstr "Slične tipovi radnih stanica gdje se iste operacije izvode paralelno." +msgstr "Slične tipovi radnih stanica gdje se iste radnje izvode paralelno." #. Description of the 'Condition' (Code) field in DocType 'Service Level #. Agreement' @@ -51584,15 +51674,15 @@ msgstr "Budući da postoji gubitak u procesu od {0} jedinica za gotov proizvod { #: erpnext/manufacturing/doctype/bom/bom.py:355 msgid "Since you have enabled 'Track Semi Finished Goods', at least one operation must have 'Is Final Finished Good' checked. For that set the FG / Semi FG Item as {0} against an operation." -msgstr "Budući da je 'Praćenje Polugotovih Proizvoda' omogućeno, barem jedna operacija mora imati odabranu opciju 'Je li Gotov Proizvod'. Za to postavite Gotov Proizvod / Polugotov Proizvod kao {0} naspram operacije." +msgstr "Budući da je 'Praćenje Polugotovih Proizvoda' omogućeno, barem jedna radnja mora imati odabranu opciju 'Je li Gotov Proizvod'. Za to postavi Gotov Proizvod / Polugotov Proizvod kao {0} naspram radnje." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:134 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:142 msgid "Since {0} are Serial No/Batch No items, you cannot enable 'Recreate Stock Ledgers' in Repost Item Valuation." -msgstr "Budući da {0} predstavljaju artikle sa Serijskim brojem/šarža brojem, ne možete omogućiti 'Ponovno kreiranje Registra Zaliha' u ponovnom knjiženju procjene artikla." +msgstr "Budući da {0} predstavljaju artikle sa Serijskim brojem/šarža brojem, ne možete omogućiti 'Ponovno izradu Registra Zaliha' u ponovnom knjiženju procjene artikla." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:114 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:122 msgid "Since {0} has 'Update Stock' disabled, you cannot create repost item valuation against it" -msgstr "Pošto je opcija 'Ažuriranje Zaliha' onemogućena za {0}, ne možete kreirati ponovnu procjenu vrijednosti artikla na osnovu nje" +msgstr "Pošto je opcija 'Ažuriranje Zaliha' onemogućena za {0}, ne možete izraditi ponovnu procjenu vrijednosti artikla na osnovu nje" #. Option for the 'Marital Status' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -51612,7 +51702,7 @@ msgstr "Jedan račun" msgid "Single Tier Program" msgstr "Jednoslojni Program" -#: erpnext/stock/doctype/item/item.js:252 +#: erpnext/stock/doctype/item/item.js:267 msgid "Single Variant" msgstr "Jedna Varijanta" @@ -51647,7 +51737,7 @@ msgstr "Preskočeno {0} DocType(a):
{1}" msgid "Skype ID" msgstr "Skype ID" -#: erpnext/public/js/templates/shop_floor_template.html:775 +#: erpnext/public/js/templates/shop_floor_template.html:795 msgid "Slot available — start a job from the queue." msgstr "Termin dostupan — pokreni radnju iz reda čekanja." @@ -51693,7 +51783,7 @@ msgstr "Prodato od" msgid "Solvency Ratios" msgstr "Koeficijenti Solventnosti" -#: erpnext/controllers/accounts_controller.py:1684 +#: erpnext/controllers/accounts_controller.py:1611 msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager." msgstr "Nedostaju neki obavezni podaci o poduzeću Nemate dozvolu da ih ažurirate. Kontaktiraj Odgovornog Sistema." @@ -51757,7 +51847,7 @@ msgstr "Naziv Izvornog Polja" msgid "Source Location" msgstr "Izvorna Lokacija" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1035 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1039 msgid "Source Manufacture Entry" msgstr "Izvor Unosa Proizvodnje" @@ -51804,11 +51894,11 @@ msgstr "Tip Izvora" #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 -#: erpnext/public/js/utils/sales_common.js:570 +#: erpnext/public/js/utils/sales_common.js:568 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:820 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:819 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Source Warehouse" msgstr "Izvorno Skladište" @@ -51824,7 +51914,7 @@ msgstr "Adresa Izvornog Skladišta" msgid "Source Warehouse Address Link" msgstr "Veza Adrese Izvornog Skladišta" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1184 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1193 msgid "Source Warehouse is mandatory for the Item {0}." msgstr "Izvorno Skladište je obavezno za Artikal {0}." @@ -51833,7 +51923,7 @@ msgstr "Izvorno Skladište je obavezno za Artikal {0}." msgid "Source Warehouse is required for item {0}" msgstr "Izvorno Skladište je obavezno za artikal {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:368 +#: erpnext/manufacturing/doctype/work_order/work_order.py:374 msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order." msgstr "Izvorno skladište {0} mora biti isto kao i skladište klijenta {1} u Podizvođačkom Nalogu." @@ -51898,15 +51988,15 @@ msgstr "Potrošnja za Račun {0} ({1}) između {2} i {3} je već premašila novi msgid "Spent" msgstr "Potrošeno" -#: erpnext/assets/doctype/asset/asset.js:697 +#: erpnext/assets/doctype/asset/asset.js:705 #: erpnext/stock/doctype/batch/batch.js:104 #: erpnext/stock/doctype/batch/batch.js:185 #: erpnext/support/doctype/issue/issue.js:114 msgid "Split" msgstr "Razdjeli" -#: erpnext/assets/doctype/asset/asset.js:152 -#: erpnext/assets/doctype/asset/asset.js:681 +#: erpnext/assets/doctype/asset/asset.js:160 +#: erpnext/assets/doctype/asset/asset.js:689 msgid "Split Asset" msgstr "Podjeljena Imovina" @@ -51928,9 +52018,9 @@ msgstr "Podjeli od" #: erpnext/support/doctype/issue/issue.js:91 #: erpnext/support/doctype/issue/issue.js:102 msgid "Split Issue" -msgstr "Razdjeli Slučaj" +msgstr "Razdjeli Zahtjev" -#: erpnext/assets/doctype/asset/asset.js:687 +#: erpnext/assets/doctype/asset/asset.js:695 msgid "Split Qty" msgstr "Podjeljena Količina" @@ -52005,20 +52095,21 @@ msgstr "Naziv Faze" msgid "Stale Days" msgstr "Neaktivni Dani" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:170 msgid "Stale Days should start from 1." msgstr "Neaktivni Dani bi trebalo da počnu od 1." #: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:485 -#: erpnext/tests/utils.py:275 +#: erpnext/tests/utils.py:276 msgid "Standard Buying" -msgstr "Standard Kupovina" +msgstr "Standard Nabava" #. Option for the 'Valuation Method' (Select) field in DocType 'Item' #. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock #. Settings' #: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_dashboard.py:36 #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Standard Cost" msgstr "Standardni Trošak" @@ -52037,21 +52128,21 @@ msgstr "Standard Ocenjeni Troškovi" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:493 -#: erpnext/stock/doctype/item/item.py:291 erpnext/tests/utils.py:283 -#: erpnext/tests/utils.py:2522 +#: erpnext/stock/doctype/item/item.py:296 erpnext/tests/utils.py:284 +#: erpnext/tests/utils.py:2524 msgid "Standard Selling" msgstr "Standard Prodaja" #. Label of the standard_rate (Currency) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Standard Selling Rate" -msgstr "Standardna Prodajna Cijena" +msgstr "Standard Prodajna Cjena" #. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Standard Template" -msgstr "Standard Šablon" +msgstr "Standard Predložak" #. Description of a DocType #: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json @@ -52061,11 +52152,11 @@ msgstr "Standard Uslovi i Odredbe koji se mogu navesti u Prodaju i Nabavu. Primj #. Label of the standard_rate (Currency) field in DocType 'Item Standard Cost' #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json msgid "Standard Valuation Rate" -msgstr "Standardna Stopa Vrednovanja" +msgstr "Standard Stopa Vrednovanja" #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.py:85 msgid "Standard Valuation Rate must be greater than zero." -msgstr "Standardna Stopa Vrednovanja mora biti veća od nule." +msgstr "Standard Stopa Vrednovanja mora biti veća od nule." #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:109 #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115 @@ -52075,12 +52166,12 @@ msgstr "Standardno ocijenjeno zalihe u {0}" #. Description of a DocType #: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json msgid "Standard tax template that can be applied to all Purchase Transactions. This template can contain a list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\", etc." -msgstr "Standard PDV šablon koji se može primijeniti na sve Nabavne Transakcije. Ovaj šablon može sadržavati listu PDV računa, kao i drugih računa troškova kao što su \"Pošiljka\", \"Osiguranje\", \"Rukovanje\", itd." +msgstr "Standard PDV predložak koji se može primijeniti na sve Nabavne Transakcije. Ovaj predložak može sadržavati listu PDV računa, kao i drugih računa troškova kao što su \"Pošiljka\", \"Osiguranje\", \"Rukovanje\", itd." #. Description of a DocType #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json msgid "Standard tax template that can be applied to all Sales Transactions. This template can contain a list of tax heads and also other expense/income heads like \"Shipping\", \"Insurance\", \"Handling\" etc." -msgstr "Standardni PDV šablon koji se može primijeniti na sve Prodajne Transakcije. Ovaj šablon može sadržavati listu PDV Računa, kao i drugih računa rashoda/prihoda kao što su \"Poštarina\", \"Osiguranje\", \"Rukovanje\" itd." +msgstr "Standardni PDV predložak koji se može primijeniti na sve Prodajne Transakcije. Ovaj predložak može sadržavati listu PDV Računa, kao i drugih računa rashoda/prihoda kao što su \"Poštarina\", \"Osiguranje\", \"Rukovanje\" itd." #. Label of the standing_name (Link) field in DocType 'Supplier Scorecard #. Scoring Standing' @@ -52107,7 +52198,7 @@ msgstr "{0} mora imati najmanje ocjene niže od svoje najviše ocjene" msgid "Start / Resume" msgstr "Pokreni / Nastavi" -#: erpnext/public/js/shop_floor/shop_floor.js:1376 +#: erpnext/public/js/shop_floor/shop_floor.js:1411 msgid "Start / Resume job" msgstr "Pokreni / Nastavi radnju" @@ -52124,8 +52215,8 @@ msgid "Start Date should be lower than End Date" msgstr "Datum početka bi trebao biti prije od datuma završetka" #: erpnext/manufacturing/doctype/job_card/job_card.js:660 -#: erpnext/public/js/shop_floor/shop_floor.js:674 -#: erpnext/public/js/templates/shop_floor_template.html:708 +#: erpnext/public/js/shop_floor/shop_floor.js:710 +#: erpnext/public/js/templates/shop_floor_template.html:728 msgid "Start Job" msgstr "Počni Rad" @@ -52141,7 +52232,7 @@ msgstr "Počni Ponovno Knjiženje" msgid "Start Time can't be greater than or equal to End Time for {0}." msgstr "Vrijeme Početka ne može biti veće ili jednako Vremenu Završetka za {0}." -#: erpnext/projects/doctype/timesheet/timesheet.js:62 +#: erpnext/projects/doctype/timesheet/timesheet.js:63 msgid "Start Timer" msgstr "Pokreni Brojanje Vremena" @@ -52153,11 +52244,11 @@ msgstr "Pokreni Brojanje Vremena" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:17 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:144 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:81 -#: erpnext/public/js/financial_statements.js:435 +#: erpnext/public/js/financial_statements.js:472 msgid "Start Year" msgstr "Početna Godina" -#: erpnext/accounts/report/financial_statements.py:130 +#: erpnext/accounts/report/financial_statements.py:307 msgid "Start Year and End Year are mandatory" msgstr "Početna i Završna godina su obavezne" @@ -52180,11 +52271,11 @@ msgstr "Pokrenut je pozadinski zadatak za izradu {0} Grupiranih Unosa Plaćanja" #: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" -msgstr "Započet je pozadinski zadatak za kreiranje {1} {0}. {2}" +msgstr "Započet je pozadinski zadatak za izradu {1} {0}. {2}" #: erpnext/public/js/bulk_transaction_processing.js:29 msgid "Starting a background job to create {0} {1}" -msgstr "Započet je pozadinski zadatak za kreiranje {0} {1}" +msgstr "Započet je pozadinski zadatak za izradu {0} {1}" #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' @@ -52266,7 +52357,7 @@ msgstr "Prikaz Statusa" msgid "Status and Reference" msgstr "Status i Referenca" -#: erpnext/projects/doctype/project/project.py:788 +#: erpnext/projects/doctype/project/project.py:818 msgid "Status must be Cancelled or Completed" msgstr "Status mora biti Poništen ili Dovršen" @@ -52355,7 +52446,7 @@ msgstr "Dostupne Zalihe" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/quotation_item/quotation_item.json -#: erpnext/stock/doctype/item/item.js:166 +#: erpnext/stock/doctype/item/item.js:181 #: erpnext/stock/doctype/warehouse/warehouse.js:62 #: erpnext/stock/report/stock_balance/stock_balance.json #: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:107 @@ -52375,7 +52466,7 @@ msgstr "Kapacitet Zaliha" #. Label of the stock_closing_tab (Tab Break) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Stock Closing" -msgstr "Zamrzavanje Zaliha" +msgstr "Zatvaranje Zaliha" #. Name of a DocType #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json @@ -52412,7 +52503,7 @@ msgstr "Zapisnik Zaključavanja Zaliha" msgid "Stock Delivered But Not Billed" msgstr "Zalihe Isporučene ali nisu Fakturisane" -#: erpnext/setup/doctype/company/company.py:217 +#: erpnext/setup/doctype/company/company.py:219 msgid "Stock Delivered But Not Billed Account cannot be changed or disabled since account {0} contains outstanding Delivery Notes: {1}" msgstr "Zalihe Dostavljene ali ne i Fakturisane Račun ne može se promijeniti ili deaktivirati jer račun {0} sadrži neizmirene Dostavnice: {1}" @@ -52446,11 +52537,10 @@ msgstr "Detalji Zaliha" #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:150 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:132 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/manufacturing.json #: erpnext/workspace_sidebar/stock.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Stock Entry" msgstr "Unos Zaliha" @@ -52487,7 +52577,7 @@ msgstr "Tip Unosa Zaliha {0} ne može se postaviti kao standard" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" -msgstr "Unos Zaliha {0} je kreiran" +msgstr "Unos Zaliha {0} je izrađen" #: erpnext/manufacturing/doctype/job_card/job_card.py:1645 msgid "Stock Entry {0} has been created" @@ -52497,6 +52587,18 @@ msgstr "Unos Zaliha {0} je stvoren" msgid "Stock Entry {0} is not submitted" msgstr "Unos Zaliha {0} nije podnešen" +#. Label of the stock_expense_section (Section Break) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Stock Expense" +msgstr "" + +#. Label of the stock_expense_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Stock Expense Accounting" +msgstr "" + #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147 msgid "Stock Expenses" @@ -52519,7 +52621,7 @@ msgstr "Artikli Zaliha" #. Label of a Workspace Sidebar Item #: erpnext/public/js/controllers/stock_controller.js:67 #: erpnext/public/js/utils/ledger_preview.js:37 -#: erpnext/stock/doctype/item/item.js:176 +#: erpnext/stock/doctype/item/item.js:191 #: erpnext/stock/doctype/item/item_dashboard.py:8 #: erpnext/stock/report/stock_ledger/stock_ledger.json #: erpnext/stock/workspace/stock/stock.json @@ -52637,7 +52739,7 @@ msgstr "Planiranje Zaliha" #. Name of a report #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item -#: erpnext/stock/doctype/item/item.js:186 +#: erpnext/stock/doctype/item/item.js:201 #: erpnext/stock/report/stock_projected_qty/stock_projected_qty.json #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json @@ -52690,9 +52792,9 @@ msgstr "Zaliha Primljena, ali nije Fakturisana" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/setup/workspace/home/home.json -#: erpnext/stock/doctype/item/item.py:677 +#: erpnext/stock/doctype/item/item.py:682 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:155 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:137 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Stock Reconciliation" @@ -52707,9 +52809,9 @@ msgstr "Artikal Popisa Zaliha" #. Standard Cost' #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json msgid "Stock Reconciliation that revalues on-hand stock to this standard rate: auto-created when the rate is changed here, or the reconciliation that captured this rate (opening entry or rate change)." -msgstr "Usklađivanje zaliha koje revalorizira dostupne zalihe na na ovu standardnu stopu: automatski se izradi kada se stopa ovdje promijeni ili usklađivanje koje je obuhvatilo ovu stopu (početni unos ili promjena stope)." +msgstr "Usklađivanje Zaliha koje revalorizira dostupne zalihe na ovu standardnu stopu: automatski se izradi kada se stopa ovdje promijeni ili usklađivanje koje je obuhvatilo ovu stopu (početni unos ili promjena stope)." -#: erpnext/stock/doctype/item/item.py:677 +#: erpnext/stock/doctype/item/item.py:682 msgid "Stock Reconciliations" msgstr "Popisi Zaliha" @@ -52728,15 +52830,15 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha" #. Label of the stock_reservation_tab (Tab Break) field in DocType 'Stock #. Settings' -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:263 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:271 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:277 #: erpnext/manufacturing/doctype/production_plan/production_plan.js:289 #: erpnext/manufacturing/doctype/production_plan/production_plan.js:297 #: erpnext/manufacturing/doctype/production_plan/production_plan.js:303 -#: erpnext/manufacturing/doctype/work_order/work_order.js:948 -#: erpnext/manufacturing/doctype/work_order/work_order.js:957 -#: erpnext/manufacturing/doctype/work_order/work_order.js:964 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:315 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:323 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:329 +#: erpnext/manufacturing/doctype/work_order/work_order.js:952 +#: erpnext/manufacturing/doctype/work_order/work_order.js:961 +#: erpnext/manufacturing/doctype/work_order/work_order.js:968 #: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:14 #: erpnext/public/js/stock_reservation.js:12 #: erpnext/selling/doctype/sales_order/sales_order.js:109 @@ -52749,13 +52851,13 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha" #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:869 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1679 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1693 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1707 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1721 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1738 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1266 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1677 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1690 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1704 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1718 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1732 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1749 #: erpnext/stock/doctype/stock_settings/stock_settings.json #: erpnext/stock/doctype/stock_settings/stock_settings.py:225 #: erpnext/stock/doctype/stock_settings/stock_settings.py:237 @@ -52768,7 +52870,7 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha" msgid "Stock Reservation" msgstr "Rezervacija Zaliha" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1849 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1860 msgid "Stock Reservation Entries Cancelled" msgstr "Otkazani Unosi Rezervacije Zaliha" @@ -52776,13 +52878,13 @@ msgstr "Otkazani Unosi Rezervacije Zaliha" #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 #: erpnext/selling/doctype/sales_order/services/reservation.py:133 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1810 msgid "Stock Reservation Entries Created" -msgstr "Kreirani Unosi Rezervacija Zaliha" +msgstr "Izrađeni Unosi Rezervacija Zaliha" #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" -msgstr "Unosi Rezervacije Zaliha su kreirani" +msgstr "Unosi Rezervacije Zaliha su izrađeni" #. Name of a DocType #: erpnext/public/js/stock_reservation.js:309 @@ -52801,15 +52903,15 @@ msgstr "Unos Rezervacije Zaliha ne može se ažurirati pošto je već dostavljen #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:565 msgid "Stock Reservation Entry created against a Pick List cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." -msgstr "Unos Rezervacije Zaliha kreiran naspram Liste Odabira ne može se ažurirati. Ako trebate napraviti promjene, preporučujemo da poništite postojeći unos i kreirate novi." +msgstr "Unos Rezervacije Zaliha izrađen naspram Liste Odabira ne može se ažurirati. Ako trebate napraviti promjene, preporučujemo da poništite postojeći unos i izradi novi." -#: erpnext/stock/doctype/delivery_note/delivery_note.py:567 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:584 msgid "Stock Reservation Warehouse Mismatch" msgstr " Neusklađeno Skladišta Rezervacije Zaliha" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:689 msgid "Stock Reservation can only be created against {0}." -msgstr "Rezervacija Zaliha može se kreirati naspram {0}." +msgstr "Rezervacija Zaliha može se izraditi naspram {0}." #. Option for the 'Status' (Select) field in DocType 'Work Order' #: erpnext/manufacturing/doctype/work_order/work_order.json @@ -52843,7 +52945,7 @@ msgstr "Rezervisana Količina Zaliha (u Jedinici Zaliha)" #: erpnext/selling/doctype/selling_settings/selling_settings.py:115 #: erpnext/setup/doctype/company/company.json #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json -#: erpnext/stock/doctype/item/item.js:482 +#: erpnext/stock/doctype/item/item.js:497 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:681 #: erpnext/stock/doctype/stock_settings/stock_settings.json #: erpnext/stock/workspace/stock/stock.json @@ -53080,21 +53182,21 @@ msgstr "Vrijednost zaliha i knjigovodstvena vrijednost nisu mogle biti usklađen msgid "Stock cannot be reserved in group warehouse {0}." msgstr "Zalihe se ne mogu rezervisati u grupnom skladištu {0}." -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1611 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1622 msgid "Stock cannot be reserved in the group warehouse {0}." msgstr "Zalihe se ne mogu rezervisati u grupnom skladištu {0}." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:906 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:912 msgid "Stock cannot be updated against the following Delivery Notes: {0}" msgstr "Zalihe se ne mogu ažurirati naspram sljedećih Dostavnica: {0}" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:982 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:988 msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item." msgstr "Zalihe se ne mogu ažurirati jer Faktura sadrži artikal direktne dostave. Onemogući 'Ažuriraj Zalihe' ili ukloni artikal direktne dostave." #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:591 msgid "Stock cannot be updated for Purchase Invoice {0} because a Purchase Receipt {1} has already been created for this transaction. Please disable the 'Update Stock' checkbox in the Purchase Invoice and save the invoice." -msgstr "Zalihe se ne mogu ažurirati za Nabavnu Fakturu {0} jer je za ovu transakciju već kreiran Nabavni Račun {1}. Deaktiviraj 'Ažuriraj Zalihe' u Nabavnoj Fakturi i sačuvaj." +msgstr "Zalihe se ne mogu ažurirati za Nabavnu Fakturu {0} jer je za ovu transakciju već izrađen Nabavni Račun {1}. Deaktiviraj 'Ažuriraj Zalihe' u Nabavnoj Fakturi i spremi." #: erpnext/stock/doctype/warehouse/warehouse.py:125 msgid "Stock entries exist with the old account. Changing the account may lead to a mismatch between the warehouse closing balance and the account closing balance. The overall closing balance will still match, but not for the specific account." @@ -53103,9 +53205,9 @@ msgstr "Unosi zaliha postoje na starom računu. Promjena računa može dovesti d #. Label of the stock_frozen_upto (Date) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Stock frozen up to" -msgstr "Zalihe zamrznute do" +msgstr "Zalihe zatvorene do" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1151 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1160 msgid "Stock has been unreserved for work order {0}." msgstr "Rezervisana Zaliha je poništena za Radni Nalog {0}." @@ -53119,7 +53221,7 @@ msgstr "Količina Zaliha nije dovoljna za Kod Artikla: {0} na skladištu {1}. Do #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:264 msgid "Stock transactions before {0} are frozen" -msgstr "Transakcije Zaliha prije {0} su zamrznute" +msgstr "Transakcije Zaliha prije {0} su zatvorene" #. Description of the 'Freeze stocks older than (days)' (Int) field in DocType #. 'Stock Settings' @@ -53131,11 +53233,11 @@ msgstr "Transakcije Zaliha koje su starije od navedenih dana ne mogu se mijenjat #. field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." -msgstr "Zalihe će biti rezervisane po podnošenju Nabavnog Računa kreirane naspram Materijalnog Naloga za Prodajni Nalog." +msgstr "Zalihe će biti rezervisane po podnošenju Nabavnog Računa izrađene naspram Materijalnog Naloga za Prodajni Nalog." #: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." -msgstr "Zalihe/Računi ne mogu se zamrznuti jer je u toku obrada unosa unazad. Pkušaj ponovo kasnije." +msgstr "Zalihe/Računi ne mogu se zatvoriti jer je u toku obrada unosa unazad. Pokušaj ponovo kasnije." #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json @@ -53148,15 +53250,15 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Razlog Zastoja" -#: erpnext/manufacturing/doctype/work_order/work_order.py:840 +#: erpnext/manufacturing/doctype/work_order/work_order.py:846 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Zaustavljeni Radni Nalog se ne može otkazati, prvo ga prekini da biste otkazali" -#: erpnext/setup/doctype/company/company.py:452 +#: erpnext/setup/doctype/company/company.py:454 #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 -#: erpnext/stock/doctype/item/item.py:329 -#: erpnext/stock/doctype/item/item.py:1776 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:334 +#: erpnext/stock/doctype/item/item.py:1781 erpnext/tests/utils.py:249 msgid "Stores" msgstr "Prodavnice" @@ -53171,8 +53273,8 @@ msgstr "Prodavnice" msgid "Straight Line" msgstr "Linearno" -#: erpnext/public/js/templates/shop_floor_template.html:951 -#: erpnext/public/js/templates/shop_floor_template.html:1001 +#: erpnext/public/js/templates/shop_floor_template.html:971 +#: erpnext/public/js/templates/shop_floor_template.html:1021 msgid "Sub" msgstr "Podređeni" @@ -53223,7 +53325,7 @@ msgstr "Skladište Podsklopa" #: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json #: erpnext/manufacturing/doctype/sub_operation/sub_operation.json msgid "Sub Operation" -msgstr "Podoperacija" +msgstr "Podradnja" #. Label of the sub_operations (Table) field in DocType 'Job Card' #. Label of the section_break_21 (Tab Break) field in DocType 'Job Card' @@ -53232,14 +53334,14 @@ msgstr "Podoperacija" #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/doctype/operation/operation.json msgid "Sub Operations" -msgstr "Podoperacije" +msgstr "Podradnje" #. Label of the procedure (Link) field in DocType 'Quality Procedure Process' #: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json msgid "Sub Procedure" msgstr "Podprocedura" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:278 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:301 msgid "Sub assembly item references are missing. Please fetch the sub assemblies and raw materials again." msgstr "Nedostaju reference artikla podsklopa. Ponovo preuzmi podsklopove i sirovine." @@ -53256,8 +53358,8 @@ msgstr "Podizvođač" #: erpnext/manufacturing/doctype/bom/bom_dashboard.py:15 #: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:12 #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json -#: erpnext/public/js/templates/shop_floor_template.html:696 -#: erpnext/public/js/templates/shop_floor_template.html:734 +#: erpnext/public/js/templates/shop_floor_template.html:716 +#: erpnext/public/js/templates/shop_floor_template.html:754 msgid "Subcontract" msgstr "Podizvođač" @@ -53270,12 +53372,8 @@ msgstr "Podizvođački Nalog" #. Name of a report #. Label of a Link in the Manufacturing Workspace -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontract Order Summary" msgstr "Sažetak Podizvođačkog Naloga" @@ -53293,16 +53391,14 @@ msgstr "Podizvođački Artikal" #. Label of a Link in the Buying Workspace #. Label of a Link in the Manufacturing Workspace #. Label of a Link in the Stock Workspace -#. Label of a Link in the Subcontracting Workspace #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.json #: erpnext/buying/workspace/buying/buying.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/workspace/stock/stock.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json msgid "Subcontracted Item To Be Received" msgstr "Podizvođački Artikal za Prijem" -#: erpnext/stock/doctype/material_request/material_request.js:224 +#: erpnext/stock/doctype/material_request/material_request.js:227 msgid "Subcontracted Purchase Order" msgstr "Podizvođački Nabavni Nalog" @@ -53318,12 +53414,10 @@ msgstr "Podizvođačka Količina" #. Label of a Link in the Buying Workspace #. Label of a Link in the Manufacturing Workspace #. Label of a Link in the Stock Workspace -#. Label of a Link in the Subcontracting Workspace #: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.json #: erpnext/buying/workspace/buying/buying.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/workspace/stock/stock.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json msgid "Subcontracted Raw Materials To Be Transferred" msgstr "Podizvođačke Sirovine koje treba Prenijeti" @@ -53333,25 +53427,19 @@ msgstr "Podizvođačke Sirovine koje treba Prenijeti" #. 'Production Plan Sub Assembly Item' #. Label of a Card Break in the Manufacturing Workspace #. Option for the 'Purpose' (Select) field in DocType 'Material Request' -#. Name of a Workspace -#. Title of a Workspace Sidebar #: erpnext/desktop_icon/subcontracting.json #: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:10 #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting" msgstr "Podizvođač" #. Label of a Link in the Manufacturing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting BOM" msgstr "Sastavnica Podizvođača" @@ -53366,14 +53454,10 @@ msgstr "Faktor Konverzije Podizvođača" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/setup/setup_wizard/operations/install_fixtures.py:132 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:158 -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Delivery" msgstr "Podizvođačka Dostava" @@ -53397,24 +53481,14 @@ msgstr "Podizvođačka Isporuka" #. Option for the 'From Voucher Type' (Select) field in DocType 'Stock #. Reservation Entry' #. Name of a DocType -#. Label of a Card Break in the Subcontracting Workspace -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/selling/doctype/sales_order/sales_order.js:1049 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Inward Order" msgstr "Podizvođački Nalog" -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Inward Order Count" -msgstr "Broj unutrašnjih Podugovornih Naloga" - #. Label of the subcontracting_inward_order_item (Data) field in DocType 'Work #. Order' #. Name of a DocType @@ -53447,7 +53521,6 @@ msgstr "Servisni Artikal Podizvođačkog Naloga" #. Receipt Item' #. Label of the subcontracting_order (Link) field in DocType 'Subcontracting #. Receipt Supplied Item' -#. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 #: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -53457,7 +53530,6 @@ msgstr "Servisni Artikal Podizvođačkog Naloga" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:141 #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Order" msgstr "Podizvođački Nalog" @@ -53465,7 +53537,7 @@ msgstr "Podizvođački Nalog" #. DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Subcontracting Order (Draft) will be auto-created on submission of Purchase Order." -msgstr "Podizvođački Nalog (nacrt) će biti automatski kreiran nakon podnošenja Nabavnog Naloga." +msgstr "Podizvođački Nalog (nacrt) će biti automatski izrađen nakon podnošenja Nabavnog Naloga." #. Name of a DocType #. Label of the subcontracting_order_item (Data) field in DocType @@ -53489,19 +53561,7 @@ msgstr "Dostavljeni Artikal Podizvođačkog Naloga" #: erpnext/buying/doctype/purchase_order/mapper.py:244 msgid "Subcontracting Order {0} created." -msgstr "Podizvođački Nalog {0} je kreiran." - -#. Label of a chart in the Subcontracting Workspace -#. Label of a Card Break in the Subcontracting Workspace -#. Label of a Link in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Outward Order" -msgstr "Vanjski Podugovrni Nalog" - -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Outward Order Count" -msgstr "Broj Vanjskih Podugovornih Naloga" +msgstr "Podizvođački Nalog {0} je izrađen." #. Label of the purchase_order (Link) field in DocType 'Subcontracting Order' #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -53518,8 +53578,6 @@ msgstr "Podizvođački Nabavni Nalog" #. Option for the 'Reference Type' (Select) field in DocType 'Quality #. Inspection' #. Name of a DocType -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json #: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json @@ -53527,8 +53585,6 @@ msgstr "Podizvođački Nabavni Nalog" #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:637 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Receipt" msgstr "Podizvođački Račun" @@ -53593,9 +53649,9 @@ msgstr "Podnesi ERR Žurnale?" #. Label of the submit_invoice (Check) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Submit Generated Invoices" -msgstr "Podnesi Generirane Fakture" +msgstr "Podnesi Izrađene Fakture" -#: erpnext/public/js/shop_floor/shop_floor.js:968 +#: erpnext/public/js/shop_floor/shop_floor.js:1004 msgid "Submit Inspection" msgstr "Podnesi Kontrolu" @@ -53605,11 +53661,11 @@ msgstr "Podnesi Kontrolu" msgid "Submit Journal entries" msgstr "Podnesi Naloge Knjiženja" -#: erpnext/public/js/shop_floor/shop_floor.js:1380 +#: erpnext/public/js/shop_floor/shop_floor.js:1415 msgid "Submit focused job card" msgstr "Podnesi trenutnu radnu karticu" -#: erpnext/public/js/shop_floor/shop_floor.js:1062 +#: erpnext/public/js/shop_floor/shop_floor.js:1098 msgid "Submit job card {0}? This finalizes the job card." msgstr "Podnesi radnu karticu {0}? Ovim se finalizira radna kartica." @@ -53625,8 +53681,8 @@ msgstr "Podnesi Ponudu" msgid "Submitted Job Card cannot be processed." msgstr "Podnešeni Radni Nalog ne može biti obrađen." -#: erpnext/public/js/shop_floor/shop_floor.js:855 -#: erpnext/public/js/shop_floor/shop_floor.js:1067 +#: erpnext/public/js/shop_floor/shop_floor.js:891 +#: erpnext/public/js/shop_floor/shop_floor.js:1103 msgid "Submitting job card..." msgstr "Podnošenje radne kartice..." @@ -53644,7 +53700,6 @@ msgstr "Podnošenje radne kartice..." #. Name of a DocType #. Label of a Link in the Invoicing Workspace #. Label of a Desktop Icon -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/process_subscription/process_subscription.json @@ -53659,7 +53714,6 @@ msgstr "Podnošenje radne kartice..." #: erpnext/selling/doctype/quotation/quotation_dashboard.py:12 #: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:25 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:34 -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscription" msgstr "Pretplata" @@ -53694,10 +53748,8 @@ msgstr "Period Pretplate" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscription Plan" msgstr "Plan Pretplate" @@ -53715,7 +53767,7 @@ msgstr "Planovi Pretplate" #. Plan' #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json msgid "Subscription Price Based On" -msgstr "Cijena Pretplate na osnovu" +msgstr "Cjena Pretplate na osnovu" #. Name of a DocType #. Label of a Link in the Invoicing Workspace @@ -53723,7 +53775,6 @@ msgstr "Cijena Pretplate na osnovu" #: erpnext/accounts/doctype/subscription_settings/subscription_settings.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/workspace_sidebar/erpnext_settings.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscription Settings" msgstr "Postavke Pretplate" @@ -53736,11 +53787,7 @@ msgstr "Datum Početka Pretplate" msgid "Subscription for Future dates cannot be processed." msgstr "Pretplata za buduće datume nemože se obraditi." -#. Name of a Workspace -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/subscriptions/subscriptions.json #: erpnext/selling/doctype/customer/customer_dashboard.py:28 -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscriptions" msgstr "Pretplate" @@ -53771,7 +53818,7 @@ msgstr "Uspješna Podešavanja" msgid "Successful" msgstr "Uspješno" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:611 msgid "Successfully Reconciled" msgstr "Uspješno Usaglašeno" @@ -53779,7 +53826,7 @@ msgstr "Uspješno Usaglašeno" msgid "Successfully Set Supplier" msgstr "Uspješno Postavljen Dobavljač" -#: erpnext/stock/doctype/item/item.py:409 +#: erpnext/stock/doctype/item/item.py:414 msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM." msgstr "Uspješno promijenjena Jedinica Zaliha, redefinirajte faktore konverzije za novu Jedinicu." @@ -53799,11 +53846,11 @@ msgstr "Uspješno uveženo {0} zapisa iz {1}. Klikni na izvezi redove s greškom msgid "Successfully imported {0} records." msgstr "Uspješno uveženo {0} zapisa." -#: erpnext/buying/doctype/supplier/supplier.js:243 +#: erpnext/buying/doctype/supplier/supplier.js:252 msgid "Successfully linked to Customer" msgstr "Uspješno povezan s Klijentom" -#: erpnext/selling/doctype/customer/customer.js:275 +#: erpnext/selling/doctype/customer/customer.js:284 msgid "Successfully linked to Supplier" msgstr "Uspješno povezan s Dobavljačem" @@ -53829,7 +53876,7 @@ msgstr "Uspješno ažurirano {0} zapisa." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:264 msgid "Suggest creating a" -msgstr "Predložite kreiranje" +msgstr "Predložite izradu" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:936 msgid "Suggested" @@ -53959,14 +54006,14 @@ msgstr "Dostavljena Količina" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:51 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:195 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/controllers/trends.py:478 erpnext/crm/doctype/contract/contract.json #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json #: erpnext/public/js/purchase_trends_filters.js:50 #: erpnext/public/js/purchase_trends_filters.js:63 #: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json #: erpnext/regional/report/irs_1099/irs_1099.py:76 -#: erpnext/selling/doctype/customer/customer.js:257 +#: erpnext/selling/doctype/customer/customer.js:266 #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:187 #: erpnext/selling/doctype/sales_order/sales_order.js:1741 @@ -53985,7 +54032,6 @@ msgstr "Dostavljena Količina" #: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:524 #: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/invoicing.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Supplier" msgstr "Dobavljač" @@ -54075,7 +54121,7 @@ msgstr "Detalji Dobavljača" #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/accounts_payable/accounts_payable.js:119 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:102 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1258 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1260 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:200 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:178 #: erpnext/accounts/report/purchase_register/purchase_register.js:27 @@ -54086,6 +54132,7 @@ msgstr "Detalji Dobavljača" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:107 #: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/trends.py:486 erpnext/controllers/trends.py:507 #: erpnext/public/js/purchase_trends_filters.js:51 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/regional/report/irs_1099/irs_1099.js:26 @@ -54175,7 +54222,7 @@ msgstr "Registar Dobavljača" #. Label of the supplier_name (Data) field in DocType 'Purchase Receipt' #. Label of the supplier_name (Data) field in DocType 'Stock Entry' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1173 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1175 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:196 #: erpnext/accounts/report/purchase_register/purchase_register.py:195 @@ -54187,6 +54234,7 @@ msgstr "Registar Dobavljača" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:101 +#: erpnext/controllers/trends.py:484 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -54261,7 +54309,7 @@ msgstr "Korisnici Portala Dobavljača" #: erpnext/buying/workspace/buying/buying.json #: erpnext/crm/doctype/opportunity/opportunity.js:81 #: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/stock/doctype/material_request/material_request.js:208 +#: erpnext/stock/doctype/material_request/material_request.js:211 #: erpnext/workspace_sidebar/buying.json msgid "Supplier Quotation" msgstr "Ponuda Dobavljača" @@ -54286,7 +54334,7 @@ msgstr "Artikal Ponude Dobavljača" #: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" -msgstr "Ponuda Dobavljača {0} Kreirana" +msgstr "Ponuda Dobavljača {0} izrađena" #: erpnext/setup/setup_wizard/data/marketing_source.txt:6 msgid "Supplier Reference" @@ -54467,7 +54515,7 @@ msgstr "Tim Podrške" #: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:69 msgid "Support Tickets" -msgstr "Slučajevi Podrške" +msgstr "Zahtjevi Podrške" #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" @@ -54484,7 +54532,7 @@ msgstr "Suspendiran" msgid "Switch Between Payment Modes" msgstr "Prebaci između načina plaćanja" -#: erpnext/public/js/shop_floor/shop_floor.js:1371 +#: erpnext/public/js/shop_floor/shop_floor.js:1406 msgid "Switch Board / Operator view" msgstr "Prikaz Kontrolne Table / Operatera" @@ -54492,10 +54540,18 @@ msgstr "Prikaz Kontrolne Table / Operatera" msgid "Switch between light, dark, or system theme" msgstr "Mjenjanje između svijetle, tamne ili sistemske teme" -#: erpnext/public/js/shop_floor/shop_floor.js:1372 +#: erpnext/public/js/shop_floor/shop_floor.js:1407 msgid "Switch board tab" msgstr "Kartica Kontrolne Table" +#: erpnext/public/js/shop_floor/shop_floor.js:139 +msgid "Switch to Dark Theme" +msgstr "Prebaci na Tamnu Temu" + +#: erpnext/public/js/shop_floor/shop_floor.js:139 +msgid "Switch to Light Theme" +msgstr "Prebaci na Svijetlu Temu" + #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:23 msgid "Sync Now" msgstr "Sinhronizuj Sad" @@ -54509,20 +54565,20 @@ msgstr "Sinhronizacija Pokrenuta" msgid "Synchronize all accounts every hour" msgstr "Sinhronizuj sve račune svakih sat vremena" -#: erpnext/accounts/doctype/account/account.py:676 +#: erpnext/accounts/doctype/account/account.py:683 msgid "System In Use" msgstr "Sistem u Upotrebi" #. Description of the 'User ID' (Link) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "System User (login) ID. If set, it will become default for all HR forms." -msgstr "ID Korisnika Sistema (prijava). Ako je postavljeno, postat će zadano za sve obrasce Osoblja." +msgstr "ID Korisnika Sistema (prijava). Ako je postavljeno, postat će standard za sve obrasce Osoblja." #. Description of the 'Make Serial No / Batch from Work Order' (Check) field in #. DocType 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "System will automatically create the serial numbers / batch for the Finished Good on submission of work order" -msgstr "Sistem će automatski kreirati serijske brojeve/šaržu za Gotov Proizvod nakon predaje Radnog Naloga" +msgstr "Sistem će automatski izraditi serijske brojeve/šaržu za Gotov Proizvod nakon predaje Radnog Naloga" #. Description of the 'Allow Implicit Pegged Currency Conversion' (Check) field #. in DocType 'Accounts Settings' @@ -54557,9 +54613,7 @@ msgid "TDS / withholding tax category applied when paying this supplier" msgstr "Kategorija PDV koja se primjenjuje pri plaćanju ovog dobavljača" #. Name of a report -#. Label of a Workspace Sidebar Item #: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.json -#: erpnext/workspace_sidebar/taxes.json msgid "TDS Computation Summary" msgstr "Pregled izračuna poreza po odbitku (TDS)." @@ -54662,7 +54716,7 @@ msgstr "Račun Fiksne Imovine" #. Capitalization' #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json msgid "Target Incoming Rate" -msgstr "Ciljana Nabavna Cijena" +msgstr "Ciljana Nabavna Cjena" #. Label of the target_item_code (Link) field in DocType 'Asset Capitalization' #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json @@ -54714,7 +54768,7 @@ msgstr "Količina" #: erpnext/stock/dashboard/item_dashboard.js:234 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:826 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:825 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Target Warehouse" msgstr "Ciljano Skladište" @@ -54738,7 +54792,7 @@ msgstr "Greška pri Rezervaciji Skladišta" msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {0} u Radnom Nalogu {1} povezanom s Internim Podizvođačkim Nalogom." -#: erpnext/manufacturing/doctype/work_order/work_order.py:604 +#: erpnext/manufacturing/doctype/work_order/work_order.py:610 msgid "Target Warehouse is required before Submit" msgstr "Skladište je obavezno prije Podnošenja" @@ -54751,7 +54805,7 @@ msgstr "Ciljno Skladište je obevezno za artikal {0}" msgid "Target Warehouse is set for some items but the customer is not an internal customer." msgstr "Skladište je postavljeno za neke artikle, ali klijent nije interni klijent." -#: erpnext/manufacturing/doctype/work_order/work_order.py:384 +#: erpnext/manufacturing/doctype/work_order/work_order.py:390 msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item." msgstr "Skladište {0} mora biti isto kao i Skladište Dostave {1} u Internom Podizvođačkom Nalogu." @@ -54834,7 +54888,7 @@ msgstr "PDV Račun" #. Label of the amount (Currency) field in DocType 'Item Wise Tax Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:244 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:91 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:101 msgid "Tax Amount" msgstr "PDV Iznos" @@ -54914,7 +54968,6 @@ msgstr "PDV Raspodjela" #. Label of the tax_category (Link) field in DocType 'Delivery Note' #. Label of the tax_category (Link) field in DocType 'Item Tax' #. Label of the tax_category (Link) field in DocType 'Purchase Receipt' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json @@ -54934,7 +54987,6 @@ msgstr "PDV Raspodjela" #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/item_tax/item_tax.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Category" msgstr "Kategorija PDV-a" @@ -54973,7 +55025,7 @@ msgstr "Porezni Broj" #: erpnext/accounts/report/sales_register/sales_register.py:229 #: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:67 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:205 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:57 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:67 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "Tax Id" @@ -55013,7 +55065,7 @@ msgid "Tax Rate" msgstr "PDV %" #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:237 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:84 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:94 msgid "Tax Rate %" msgstr "PDV %" @@ -55033,10 +55085,8 @@ msgstr "PDV Red" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Rule" msgstr "Pravila PDV-a" @@ -55053,11 +55103,11 @@ msgstr "PDV Postavke" #. Label of a Workspace Sidebar Item #: erpnext/workspace_sidebar/selling.json msgid "Tax Template" -msgstr "PDV Šablon" +msgstr "PDV Predložak" #: erpnext/accounts/doctype/tax_rule/tax_rule.py:86 msgid "Tax Template is mandatory." -msgstr "PDV Šablon je obavezan." +msgstr "PDV Predložak je obavezan." #: erpnext/accounts/report/sales_register/sales_register.py:309 msgid "Tax Total" @@ -55095,7 +55145,6 @@ msgstr "Račun PDV Odbitka" #. Label of the tax_withholding_category (Link) field in DocType 'Lower #. Deduction Certificate' #. Label of the tax_withholding_category (Link) field in DocType 'Customer' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -55103,19 +55152,16 @@ msgstr "Račun PDV Odbitka" #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json #: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:199 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:72 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:82 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json #: erpnext/selling/doctype/customer/customer.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Withholding Category" msgstr "Kategorija Odbitka PDV-a" #. Name of a report -#. Label of a Workspace Sidebar Item #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Withholding Details" msgstr "Detalji Odbitka PDV" @@ -55160,7 +55206,6 @@ msgstr "Unos Odbitka PDV-a" #. Rate' #. Label of the tax_withholding_group (Link) field in DocType 'Supplier' #. Label of the tax_withholding_group (Link) field in DocType 'Customer' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json @@ -55170,7 +55215,6 @@ msgstr "Unos Odbitka PDV-a" #: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/selling/doctype/customer/customer.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Withholding Group" msgstr "Grupa Odbitka PDV-a" @@ -55237,12 +55281,10 @@ msgstr "Tip PDV Dokumenta" #. Label of the taxes (Table) field in DocType 'POS Closing Entry' #. Label of the taxes_section (Section Break) field in DocType 'POS Profile' #. Label of the sb_1 (Section Break) field in DocType 'Subscription' -#. Name of a Workspace #. Label of a Desktop Icon #. Label of the taxes_section (Section Break) field in DocType 'Sales Order' #. Label of the taxes (Table) field in DocType 'Item Group' #. Label of the taxes (Table) field in DocType 'Item' -#. Title of a Workspace Sidebar #: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:60 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -55250,10 +55292,10 @@ msgstr "Tip PDV Dokumenta" #: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:12 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:27 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:43 -#: erpnext/accounts/workspace/taxes/taxes.json erpnext/desktop_icon/taxes.json +#: erpnext/desktop_icon/taxes.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/setup/doctype/item_group/item_group.json -#: erpnext/stock/doctype/item/item.json erpnext/workspace_sidebar/taxes.json +#: erpnext/stock/doctype/item/item.json msgid "Taxes" msgstr "PDV" @@ -55376,7 +55418,7 @@ msgstr "Odbijeni PDV i Naknade" msgid "Taxes and Charges Deducted (Company Currency)" msgstr "Odbijeni PDV i Naknade (Valuta Poduzeća)" -#: erpnext/stock/doctype/item/item.py:422 +#: erpnext/stock/doctype/item/item.py:427 msgid "Taxes row #{0}: {1} cannot be smaller than {2}" msgstr "PDV red #{0}: {1} ne može biti manji od {2}" @@ -55425,21 +55467,21 @@ msgstr "Televizija" #: erpnext/manufacturing/doctype/bom/bom.js:455 msgid "Template Item" -msgstr "Artikal Šablon" +msgstr "Artikal Predložak" -#: erpnext/stock/get_item_details.py:358 +#: erpnext/stock/get_item_details.py:357 msgid "Template Item Selected" -msgstr "Odabrani Šablon Artikla" +msgstr "Odabrani Predložak Artikla" #. Label of the template_task (Data) field in DocType 'Task' #: erpnext/projects/doctype/task/task.json msgid "Template Task" -msgstr "Šablon Zadatka" +msgstr "Predložak Zadatka" #. Label of the template_title (Data) field in DocType 'Journal Entry Template' #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json msgid "Template Title" -msgstr "Naziv Šablona" +msgstr "Naziv Predloška" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:29 msgid "Temporarily on Hold" @@ -55523,7 +55565,7 @@ msgstr "Odredbe & Uslovi" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/workspace_sidebar/selling.json msgid "Terms Template" -msgstr "Šablon Uslova" +msgstr "Predložak Uslova" #. Label of the terms_section_break (Section Break) field in DocType 'POS #. Invoice' @@ -55550,7 +55592,6 @@ msgstr "Šablon Uslova" #. Name of a DocType #. Label of the terms (Text Editor) field in DocType 'Terms and Conditions' #. Label of the terms (Text Editor) field in DocType 'Purchase Receipt' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json @@ -55565,7 +55606,6 @@ msgstr "Šablon Uslova" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Terms and Conditions" msgstr "Odredbe i Uslovi" @@ -55591,14 +55631,14 @@ msgstr "Detalji Odredbi i Uslova" #. Conditions' #: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json msgid "Terms and Conditions Help" -msgstr "Šablon Odredbi i Uslova" +msgstr "Predložak Odredbi i Uslova" #. Label of a Link in the Buying Workspace #. Label of a Link in the Selling Workspace #: erpnext/buying/workspace/buying/buying.json #: erpnext/selling/workspace/selling/selling.json msgid "Terms and Conditions Template" -msgstr "Šablon Odredbi i Uslova" +msgstr "Predložak Odredbi i Uslova" #. Label of the territory (Link) field in DocType 'POS Invoice' #. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' @@ -55639,17 +55679,18 @@ msgstr "Šablon Odredbi i Uslova" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/doctype/territory_item/territory_item.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:142 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:108 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:184 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:68 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:169 -#: erpnext/accounts/report/gross_profit/gross_profit.py:436 +#: erpnext/accounts/report/gross_profit/gross_profit.py:438 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:8 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:22 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:259 #: erpnext/accounts/report/sales_register/sales_register.py:223 -#: erpnext/crm/doctype/lead/lead.json +#: erpnext/controllers/trends.py:421 erpnext/controllers/trends.py:447 +#: erpnext/controllers/trends.py:522 erpnext/crm/doctype/lead/lead.json #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/doctype/prospect/prospect.json #: erpnext/crm/report/lead_details/lead_details.js:46 @@ -55752,11 +55793,11 @@ msgstr "Sastavnica koja će biti zamijenjena" msgid "The Batch No {0} has not been supplied against the {1} {2}" msgstr "Broj Šarže {0} nije dostavljen protiv {1} {2}" -#: erpnext/stock/serial_batch_bundle.py:1585 +#: erpnext/stock/serial_batch_bundle.py:1591 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." -msgstr "Šarža {0} ima negativnu količinu {1}. Da biste to riješili, idite na Postavke Šarže i kliknite na Ponovno izračunaj količinu Šarže. Ako problem i dalje postoji, kreiraj unutrašnji unos." +msgstr "Šarža {0} ima negativnu količinu {1}. Da biste to riješili, idite na Postavke Šarže i kliknite na Ponovno izračunaj količinu Šarže. Ako problem i dalje postoji, izradi unutrašnji unos." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1640 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1641 msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." msgstr "Šarža {0} artikla {1} ima negativne zalihe u skladištu {2}{3}. Dodaj količinu zaliha od {4} da biste nastavili s ovim unosom. Ako nije moguće izvršiti unos prilagođavanja, omogućite 'Dozvoli Negativne Zalihe za Šaržu' za Šaržu {0} ili u Postavkama Zaliha da biste nastavili. Međutim, omogućavanje ove postavke može dovesti do negativnih zaliha u sistemu. Stoga, molimo vas da osigurate da se nivoi zaliha što prije prilagode kako bi se održala ispravna stopa vrednovanja." @@ -55784,7 +55825,7 @@ msgstr "Knjigovodstveni Unosi i zaključna stanja će se obraditi u pozadini, to msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Knjigovodstveni Unosi će biti otkazani u pozadini, može potrajati nekoliko minuta." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1206 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1207 msgid "The Item {0} does not have Serial No or Batch No" msgstr "Artikal {0} nema Serijski niti Šaržni Broj" @@ -55792,7 +55833,7 @@ msgstr "Artikal {0} nema Serijski niti Šaržni Broj" msgid "The Loyalty Program isn't valid for the selected company" msgstr "Program Lojalnosti ne važi za odabrano poduzeće" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1269 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1270 msgid "The Payment Request {0} is already paid, cannot process payment twice" msgstr "Zahtjev Plaćanja {0} je već plaćen, ne može se obraditi plaćanje dvaput" @@ -55808,7 +55849,7 @@ msgstr "Lista Odabira koja ima Unose Rezervacije Zaliha ne može se ažurirati. msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" msgstr "Količinski Gubitak Procesa je poništen prema Radnim Karticama Količinskog Gubitka Procesa" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1384 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1397 msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "Količinski Gubitak Procesa je poništen prema Radnim Karticama Količinskog Gubitka Procesa" @@ -55820,7 +55861,7 @@ msgstr "Prodavač je povezan sa {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Serijski Broj u redu #{0}: {1} nije dostupan u skladištu {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2759 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2765 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Serijski Broj {0} je rezervisan naspram {1} {2} i ne može se koristiti za bilo koju drugu transakciju." @@ -55828,13 +55869,13 @@ msgstr "Serijski Broj {0} je rezervisan naspram {1} {2} i ne može se koristiti msgid "The Serial Nos {0} have not been supplied against the {1} {2}" msgstr "Serijski Brojevi {0} nisu dostavljeni protiv {1} {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:959 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:972 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Serijski i Šaržni Paket {0} ne važi za ovu transakciju. 'Tip transakcije' bi trebao biti 'Vani' umjesto 'Unutra' u Serijskom i Šaržnom Paketu {0}" #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:17 msgid "The Stock Entry of type 'Manufacture' is known as backflush. Raw materials being consumed to manufacture finished goods is known as backflushing.
When creating Manufacture Entry, raw-material items are backflushed based on BOM of production item. If you want raw-material items to be backflushed based on Material Transfer entry made against that Work Order instead, then you can set it under this field." -msgstr "Unos Zaliha tipa 'Proizvodnja' poznat je kao Retroaktivno Preuzimanje. Sirovine koje se troše za proizvodnju gotovih proizvoda poznate su kao Retroaktivno Preuzimanje.
Prilikom kreiranja unosa proizvodnje, artikli sirovina se vraćaju nazad na osnovu Sastavnice proizvodne jedinice. Ako želite da se artikli sirovog materijala vraćaju natrag na osnovu unosa prijenosa materijala napravljenog naspram tog radnog naloga umjesto toga, možete ga postaviti ispod ovog polja." +msgstr "Unos Zaliha tipa 'Proizvodnja' poznat je kao Retroaktivno Preuzimanje. Sirovine koje se troše za proizvodnju gotovih proizvoda poznate su kao Retroaktivno Preuzimanje.
Prilikom izrade unosa proizvodnje, artikli sirovina se vraćaju nazad na osnovu Sastavnice proizvodne jedinice. Ako želite da se artikli sirovog materijala vraćaju natrag na osnovu unosa prijenosa materijala napravljenog naspram tog radnog naloga umjesto toga, možete ga postaviti ispod ovog polja." #. Description of the 'Closing Account Head' (Link) field in DocType 'Period #. Closing Voucher' @@ -55842,7 +55883,7 @@ msgstr "Unos Zaliha tipa 'Proizvodnja' poznat je kao Retroaktivno Preuzimanje. S msgid "The account head under Liability or Equity, in which Profit/Loss will be booked" msgstr "Računa pod Obavezama ili Kapitalom, u kojoj će se knjižiti Rezultat" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1163 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1164 msgid "The allocated amount is greater than the outstanding amount of Payment Request {0}" msgstr "Dodijeljeni iznos je veći od nepodmirenog iznosa Zahtjeva Plaćanja {0}" @@ -55862,11 +55903,11 @@ msgstr "Bankovni račun je onemogućen. Molimo omogućite ga" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:91 #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:499 msgid "The bank account is not a company account. Please select a company account" -msgstr "Bankovni račun nije račun poduzeća. Molimo odaberite račun poduzeća" +msgstr "Bankovni račun nije račun poduzeća. Odaberi račun poduzeća" -#: erpnext/stock/services/serial_batch_bundle_service.py:654 -msgid "The batch {0} is already reserved in {1} {2}. So, cannot proceed with the {3} {4}, which is created against the {5} {6}." -msgstr "Šarža {0} je već rezervisana u {1} {2}. Dakle, ne može se nastaviti sa {3} {4}, koja je kreirana za {5} {6}." +#: erpnext/stock/services/serial_batch_bundle_service.py:655 +msgid "The batch {0} is reserved for {1} in the warehouse {2} and the remaining quantity is not enough to cover the reservations. So, cannot proceed with the {3} {4}." +msgstr "" #: erpnext/regional/report/vat_audit_report/vat_audit_report.py:41 msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa." @@ -55878,7 +55919,7 @@ msgstr "Poduzeće {0} nije u Ujedinjenim Arapskim Emiratima. Izvještaj o PDV-u #: erpnext/manufacturing/doctype/job_card/job_card.py:1435 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." -msgstr "Završena količina {0} operacije {1} ne može biti veća od završene količine {2} prethodne operacije {3}." +msgstr "Završena količina {0} radnje {1} ne može biti veća od završene količine {2} prethodne radnje {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." @@ -55886,7 +55927,7 @@ msgstr "Valuta Fakture {0} ({1}) se razlikuje od valute ove Opomene ({2})." #: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." -msgstr "Trenutni Unos Otvaranje Kase je zastario. Zatvori ga i kreiraj novi." +msgstr "Trenutni Unos Otvaranje Kase je zastario. Zatvori ga i izradi novi." #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:208 msgid "The date format detected in the statement file. This is used to parse the date values." @@ -55896,7 +55937,7 @@ msgstr "Format datuma otkriven u datoteci izvoda. Koristi se za parsiranje vrije msgid "The date of the transaction" msgstr "Datum transakcije" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1236 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1247 msgid "The default BOM for that item will be fetched by the system. You can also change the BOM." msgstr "Sistem će preuzeti standard Sastavnicu za Artikal. Također možete promijeniti Sastavnicu." @@ -55910,7 +55951,7 @@ msgstr "Razlika između odvremena i do vremena mora biti višestruki broj Termin #: banking/src/components/common/FileUploadBanner.tsx:11 msgid "The document has been created and reconciled. Uploading attachments..." -msgstr "Dokument je kreiran i usklađen. Otpremanje priloga..." +msgstr "Dokument je izrađen i usklađen. Otpremanje priloga..." #: erpnext/accounts/doctype/share_transfer/share_transfer.py:177 #: erpnext/accounts/doctype/share_transfer/share_transfer.py:185 @@ -55933,7 +55974,7 @@ msgstr "Polje Za Dioničara ne može biti prazno" msgid "The field {0} in row {1} is not set" msgstr "Polje {0} u redu {1} nije postavljeno" -#: erpnext/stock/stock_ledger.py:445 +#: erpnext/stock/stock_ledger.py:475 msgid "The field {0} is required for reposting" msgstr "Polje {0} je obavezno za ponovno knjiženje" @@ -55952,7 +55993,7 @@ msgstr "Konačni artikal koji će biti proizveden korištenjem ove Sastavnice." #: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:40 msgid "The fiscal year has been automatically created in a Disabled state to maintain consistency with the previous fiscal year's status." -msgstr "Fiskalna godina je automatski kreirana u onemogućenom stanju kako bi se održala konzistentnost sa statusom prethodne fiskalne godine." +msgstr "Fiskalna godina je automatski izrađena u onemogućenom stanju kako bi se održala konzistentnost sa statusom prethodne fiskalne godine." #: erpnext/accounts/doctype/share_transfer/share_transfer.py:240 msgid "The folio numbers are not matching" @@ -55962,7 +56003,7 @@ msgstr "Brojevi Folija nisu usklađeni" msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "Sljedeći artikli, koji imaju Pravila Odlaganja na Stranu, nisu mogli biti primjenjene:" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:137 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:140 msgid "The following Purchase Invoices are not submitted:" msgstr "Sljedeće Nabavne Fakture nisu podnešene:" @@ -55974,41 +56015,41 @@ msgstr "Sljedeća imovina nije uspjela automatski knjižiti unose amortizacije: msgid "The following batches are expired, please restock them:
{0}" msgstr "Sljedeće šarže su istekle, obnovi zalihe:
{0}" -#: erpnext/controllers/accounts_controller.py:371 +#: erpnext/controllers/accounts_controller.py:377 msgid "The following cancelled repost entries exist for {0}:
{1}
Kindly delete these entries before continuing." msgstr "Sljedeći otkazani unosi ponovnog objavljivanja postoje za {0}:
{1}
Molimo vas da izbrišete ove unose prije nego što nastavite." -#: erpnext/stock/doctype/item/item.py:953 +#: erpnext/stock/doctype/item/item.py:958 msgid "The following deleted attributes exist in Variants but not in the Template. You can either delete the Variants or keep the attribute(s) in template." -msgstr "Sljedeći izbrisani atributi postoje u varijantama, ali ne i u šablonu. Možete ili izbrisati Varijante ili zadržati Atribut(e) u šablonu." +msgstr "Sljedeći izbrisani atributi postoje u varijantama, ali ne i u predlošku. Možete ili izbrisati Varijante ili zadržati Atribut(e) u predlošku." #: erpnext/setup/doctype/employee/employee.py:286 msgid "The following employees are currently still reporting to {0}:" -msgstr "Sljedeći personal još uvijek podnose izvještaj {0}:" +msgstr "Sljedeće Osoblje još uvijek podnosi izvještaj {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 msgid "The following invalid Pricing Rules are deleted:{0}" -msgstr "Sljedeća nevažeća Pravila Cijena se brišu:{0}" +msgstr "Sljedeća nevažeća Pravila Cjena se brišu:{0}" -#: erpnext/accounts/doctype/payment_request/payment_request.py:782 +#: erpnext/accounts/doctype/payment_request/payment_request.py:783 msgid "The following payment schedule(s) already exist:\n" "{0}" msgstr "Sljedeći raspored(i) plaćanja već postoje:\n" "{0}" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:111 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:114 msgid "The following rows are duplicates:" msgstr "Sljedeći redovi su duplikati:" -#: erpnext/stock/doctype/material_request/material_request.py:566 +#: erpnext/stock/doctype/material_request/material_request.py:605 msgid "The following {0} were created: {1}" -msgstr "Sljedeći {0} su kreirani: {1}" +msgstr "Sljedeći {0} su izrađeni: {1}" #. Description of the 'How often should sales data be updated in #. Company/Project?' (Select) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "The frequency at which project progress and company transaction details will be updated. Set it to daily or monthly if you post a lot of transactions." -msgstr "Učestalost ažuriranja napretka projekta i detalja o transakcijama poduzeća. Postavite na dnevno ili mjesečno ako obavljate mnogo transakcija." +msgstr "Učestalost ažuriranja napretka projekta i detalja o transakcijama poduzeća. Postavi na dnevno ili mjesečno ako obavljate mnogo transakcija." #. Description of the 'Gross Weight' (Float) field in DocType 'Packing Slip' #: erpnext/stock/doctype/packing_slip/packing_slip.json @@ -56023,15 +56064,15 @@ msgstr "Praznik {0} nije između Od Datuma i Do Datuma" msgid "The invoice is not fully allocated as there is a difference of {0}." msgstr "Faktura nije u potpunosti dodijeljena jer postoji razlika od {0}." -#: erpnext/controllers/buying_controller.py:1244 +#: erpnext/controllers/buying_controller.py:1252 msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master." msgstr "Artikal {item} nije označen kao {type_of} artikal. Možete ga omogućiti kao {type_of} Artikal u Postavkama Artikla." -#: erpnext/stock/doctype/item/item.py:679 +#: erpnext/stock/doctype/item/item.py:684 msgid "The items {0} and {1} are present in the following {2} :" msgstr "Artikli {0} i {1} se nalaze u sljedećem {2} :" -#: erpnext/controllers/buying_controller.py:1237 +#: erpnext/controllers/buying_controller.py:1245 msgid "The items {items} are not marked as {type_of} item. You can enable them as {type_of} item from their Item masters." msgstr "Artikli {items} nisu označeni kao {type_of} artikli. Možete ih omogućiti kao {type_of} artikle u Postavkama Artikala." @@ -56047,7 +56088,7 @@ msgstr "Radna Kartica {0} je u {1} stanju i ne možete je ponovo pokrenuti." msgid "The last account row must not have any debit or credit amounts set." msgstr "Posljednji red računa ne smije imati postavljene iznose debita ili kredita." -#: erpnext/public/js/utils/barcode_scanner.js:533 +#: erpnext/public/js/utils/barcode_scanner.js:542 msgid "The last scanned warehouse has been cleared and won't be set in the subsequently scanned items" msgstr "Posljednje skenirano skladište je izbrisano i neće biti postavljeno u naredno skeniranim artiklima" @@ -56075,11 +56116,11 @@ msgstr "Početno stanje se možda nije usklađeno s vašim bankovnim izvodom. Ž #: erpnext/manufacturing/doctype/operation/operation.py:44 msgid "The operation {0} cannot be added multiple times" -msgstr "Operacija {0} se ne može dodati više puta" +msgstr "Radnji {0} se ne može dodati više puta" #: erpnext/manufacturing/doctype/operation/operation.py:49 msgid "The operation {0} cannot be its own sub-operation" -msgstr "Operacija {0} ne može biti vlastita podoperacija" +msgstr "Radnji {0} ne može biti vlastita podradnja" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -56089,9 +56130,9 @@ msgstr "Originalnu fakturu treba objediniti prije ili zajedno sa povratnom faktu msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice." msgstr "Nepodmireni iznos {0} u {1} je manji od {2}. Ažurira se nepodmireni iznosa na ovoj fakturi." -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:234 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:235 msgid "The parent account {0} does not exists in the uploaded template" -msgstr "Nadređeni Rađun {0} ne postoji u otpremljenom šablonu" +msgstr "Nadređeni Rađun {0} ne postoji u otpremljenom predlošku" #: erpnext/accounts/doctype/payment_request/payment_request.py:209 msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request" @@ -56134,13 +56175,13 @@ msgstr "Cjenovnik {0} ne postoji ili je onemogućen" #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." -msgstr "Cijena po kojoj je ovaj artikal posljednji put nabavljen putem fakture. Sistem automatski ažurira." +msgstr "Cjena po kojoj je ovaj artikal posljednji put nabavljen putem fakture. Sistem automatski ažurira." #: banking/src/pages/BankStatementImporter.tsx:205 msgid "The reference number of the transaction" msgstr "Referentni broj transakcije" -#: erpnext/public/js/utils.js:976 +#: erpnext/public/js/utils.js:988 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Rezervisane Zalihe će biti puštene kada ažurirate artikle. Jeste li sigurni da želite nastaviti?" @@ -56152,7 +56193,7 @@ msgstr "Rezervisane Zalihe će biti puštene. Jeste li sigurni da želite nastav msgid "The root account {0} must be a group" msgstr "Kontna Klasa {0} mora biti grupa" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:87 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:88 msgid "The selected BOMs are not for the same item" msgstr "Odabrane Sastavnice nisu za istu artikal" @@ -56164,16 +56205,16 @@ msgstr "Odabrani račun povrata {0} ne pripada {1}." msgid "The selected item cannot have Batch" msgstr "Odabrani artikal ne može imati Šaržu" -#: erpnext/assets/doctype/asset/asset.js:662 +#: erpnext/assets/doctype/asset/asset.js:670 msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone.
Do you want to continue?" msgstr "Prodajna Količina je manja od ukupne količine imovine. Preostala količina će biti podijeljena u novu imovinu. Ova radnja se ne može poništiti.
Želite li nastaviti?" #: erpnext/accounts/doctype/share_transfer/share_transfer.py:194 msgid "The seller and the buyer cannot be the same" -msgstr "Prodavač i Kupac ne mogu biti isti" +msgstr "Prodavač i Klijent ne mogu biti isti" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:199 msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "Serijski i Šaržni Paket {0} nije povezan sa {1} {2}" @@ -56193,9 +56234,9 @@ msgstr "Dionice već postoje" msgid "The shares don't exist with the {0}" msgstr "Dionice ne postoje sa {0}" -#: erpnext/stock/stock_ledger.py:908 +#: erpnext/stock/stock_ledger.py:956 msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju." +msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste izraditi pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju." #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:863 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:
{1}" @@ -56203,7 +56244,7 @@ msgstr "Zalihe su rezervirane za sljedeće artikle i skladišta, poništite ih z #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:37 msgid "The sync has started in the background, please check the {0} list for new records." -msgstr "Sinhronizacija je počela u pozadini, provjerite listu {0} za nove zapise." +msgstr "Sinhronizacija je počela u pozadini, provjeri listu {0} za nove zapise." #: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:484 msgid "The system found a mirror transaction ({0}) in another account with the same amount and date." @@ -56217,7 +56258,7 @@ msgstr "Sistem će pokušati automatski uskladiti stranku s bankovnom transakcij #. DocType 'POS Settings' #: erpnext/accounts/doctype/pos_settings/pos_settings.json msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." -msgstr "Sistem će kreirati Prodajnu Fakturu ili Kasa Fkturu iz Kase na osnovu ove postavke. Za transakcije velikog obima preporučuje se korištenje Kasa Fakture." +msgstr "Sistem će izraditi Prodajnu Fakturu ili Kasa Fkturu iz Kase na osnovu ove postavke. Za transakcije velikog obima preporučuje se korištenje Kasa Fakture." #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1239 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" @@ -56227,11 +56268,11 @@ msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bi msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem sa obradom u pozadini, sistem će dodati komentar o grešci na ovom usklađivanju zaliha i vratiti se na fazu Poslano" -#: erpnext/stock/doctype/material_request/material_request.py:352 +#: erpnext/stock/doctype/material_request/material_request.py:391 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "Ukupna količina izdavanja / prijenosa {0} u Materijalnom Nalogu {1} ne može biti veća od dozvoljene tražene količine {2} za artikal {3}" -#: erpnext/stock/doctype/material_request/material_request.py:359 +#: erpnext/stock/doctype/material_request/material_request.py:398 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" msgstr "Ukupna količina Izdavanja / Prijenosa {0} u Materijalnom Nalogu {1} ne može biti veća od dozvoljene tražene količine {2} za artikal {3}" @@ -56261,29 +56302,29 @@ msgstr "Korisnik će moći prenijeti dodatne materijale iz skladišsta u skladi #. DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "The users with this Role are allowed to create/modify a stock transaction, even though the transaction is frozen." -msgstr "Korisnicima sa ovom ulogom je dozvoljeno da kreiraju/modifikuju transakciju zaliha, iako su transakcije zamrznute." +msgstr "Korisnicima sa ovom ulogom je dozvoljeno da izrade/modifikuju transakciju zaliha, iako su transakcije zatvorene." #: erpnext/stock/doctype/item_alternative/item_alternative.py:58 msgid "The value of {0} differs between Items {1} and {2}" msgstr "Vrijednost {0} se razlikuje između artikala {1} i {2}" -#: erpnext/controllers/item_variant.py:205 +#: erpnext/controllers/item_variant.py:267 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Vrijednost {0} je već dodijeljena postojećem artiklu {1}." #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py:307 msgid "The warehouse account(s) below are not of type 'Stock'. Please set a correct Stock asset account on the warehouse (Account Type must be 'Stock'):" -msgstr "Skladišni račun(i) u nastavku nisu tipa 'Zaliha'. Molimo postavite ispravan račun zaliha na skladištu (tip računa mora biti 'Zaliha'):" +msgstr "Skladišni račun(i) u nastavku nisu tipa 'Zaliha'. Postavi ispravan račun zaliha na skladištu (tip računa mora biti 'Zaliha'):" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1264 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1275 msgid "The warehouse where you store finished Items before they are shipped." msgstr "Skladište u kojem skladištite gotove artikle prije nego što budu poslani." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1257 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1268 msgid "The warehouse where you store your raw materials. Each required item can have a separate source warehouse. Group warehouse also can be selected as source warehouse. On submission of the Work Order, the raw materials will be reserved in these warehouses for production usage." msgstr "Skladište u kojem je skladište sirovine. Svaki potrebni artikal može imati posebno izvorno skladište. Grupno skladište se takođe može odabrati kao izvorno skladište. Po podnošenju radnog naloga, sirovine će biti rezervisane u ovim skladištima za proizvodnu upotrebu." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1269 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1280 msgid "The warehouse where your Items will be transferred when you begin production. Group Warehouse can also be selected as a Work in Progress warehouse." msgstr "Skladište u koje će vaši artikli biti prebačeni kada započnete proizvodnju. Grupno skladište se takođe može odabrati kao Skladište u Toku." @@ -56297,21 +56338,21 @@ msgstr "{0} ({1}) mora biti jednako {2} ({3})" #: erpnext/public/js/controllers/transaction.js:3473 msgid "The {0} contains Unit Price Items." -msgstr "{0} sadrži Artikle s Jediničnom Cijenom." +msgstr "{0} sadrži Artikle s Jediničnom Cjenom." -#: erpnext/stock/doctype/item/item.py:493 +#: erpnext/stock/doctype/item/item.py:498 msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Prefiks {0} '{1}' već postoji. Molimo vas da promijenite serijski broj šarže, u suprotnom će biti grešku o dupliranom unosu." -#: erpnext/stock/doctype/material_request/material_request.py:572 +#: erpnext/stock/doctype/material_request/material_request.py:611 msgid "The {0} {1} created successfully" -msgstr "{0} {1} je uspješno kreiran" +msgstr "{0} {1} je uspješno izrađen" #: erpnext/controllers/sales_and_purchase_return.py:42 msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} se ne poklapa s {0} {2} u {3} {4}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1780 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1781 msgid "The {0} {1} is in submitted state, please cancel it first" msgstr "{0} {1} je u podnešenom stanju, prvo ga otkažite" @@ -56321,7 +56362,7 @@ msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizv #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:74 msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." -msgstr "Zatim se cijenovna pravila filtriraju na osnovu klijenta, grupe klijenta, distrikta, dobavljača, tipa dobavljača, kampanje, prodajnog partnera itd." +msgstr "Zatim se cjenovna pravila filtriraju na osnovu klijenta, grupe klijenta, distrikta, dobavljača, tipa dobavljača, kampanje, prodajnog partnera itd." #: erpnext/assets/doctype/asset/asset.py:736 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." @@ -56329,7 +56370,7 @@ msgstr "Postoji aktivno održavanje ili popravke imovine naspram imovine. Morate #: erpnext/accounts/doctype/share_transfer/share_transfer.py:201 msgid "There are inconsistencies between the rate, no of shares and the amount calculated" -msgstr "Postoje nedosljednosti između cijene, broja dionica i izračunatog iznosa" +msgstr "Postoje nedosljednosti između cjene, broja dionica i izračunatog iznosa" #: erpnext/accounts/doctype/account/account.py:207 msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" @@ -56346,7 +56387,7 @@ msgstr "U sistemu nema knjigovodstvenih unosa za odabrani račun i datume." #: erpnext/setup/demo.py:130 msgid "There are no active Fiscal Years for which Demo Data can be generated." -msgstr "Ne postoje aktivne Fiskalne Godine za koje se mogu generirati Demo Podaci." +msgstr "Ne postoje aktivne Fiskalne Godine za koje se mogu izraditi Demo Podaci." #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:220 msgid "There are no entries in the system where the clearance date is before the posting date." @@ -56364,7 +56405,7 @@ msgstr "Za ovaj datum nema slobodnih termina" msgid "There are no transactions in the system for the selected bank account and dates that match the filters." msgstr "U sistemu nema transakcija za odabrani bankovni račun i datume koji odgovaraju filterima." -#: erpnext/stock/doctype/item/item.js:1587 +#: erpnext/stock/doctype/item/item.js:1608 msgid "There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit Item Valuation, FIFO and Moving Average." msgstr "Postoje dvije opcije za održavanje vrijednosti artikal. FIFO (prvi ušao - prvi izašao) i Pokretni Prosijek. Da biste detaljno razumjeli ovu temu, posjetite Vrednovanje Artikla, FIFO i Pokretni Prosijek." @@ -56376,13 +56417,13 @@ msgstr "Prije {1} postoji {0} neusklađenih transakcija." msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Može postojati višestruki faktor sakupljanja na osnovu ukupne potrošnje. Ali faktor konverzije za otkup će uvijek biti isti za sve nivoe." -#: erpnext/accounts/party.py:597 +#: erpnext/accounts/party.py:613 msgid "There can only be 1 Account per Company in {0} {1}" msgstr "Može postojati samo jedan račun po poduzeću u {0} {1}" #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:86 msgid "There can only be one Shipping Rule Condition with 0 or blank value for \"To Value\"" -msgstr "Može postojati samo jedan uvjet pravila isporuke s 0 ili praznom vrijednošću za \"Do Vrijednosti\"" +msgstr "Može postojati samo jedan uslov pravila isporuke s 0 ili praznom vrijednošću za \"Do Vrijednosti\"" #: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:65 msgid "There is already a valid Lower Deduction Certificate {0} for Supplier {1} against category {2} for this time period." @@ -56400,13 +56441,13 @@ msgstr "Nije pronađena Šarža naspram {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "Postoji jedna neusklađena transakcija prije {0}." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:909 msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "U ovom Unosu Zaliha mora biti najmanje jedan gotov proizvod" #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 msgid "There was an error creating Bank Account while linking with Plaid." -msgstr "Došlo je do greške pri kreiranju Bankovnog Računa prilikom povezivanja s Plaid." +msgstr "Došlo je do greške pri izradi Bankovnog Računa prilikom povezivanja s Plaid." #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:259 msgid "There was an error syncing transactions." @@ -56432,9 +56473,9 @@ msgstr "Došlo je do greške." #: erpnext/accounts/doctype/bank/bank.js:112 #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:119 msgid "There was an issue connecting to Plaid's authentication server. Check browser console for more information" -msgstr "Došlo je do problema pri povezivanju s Plaidovim serverom za autentifikaciju. Provjerite konzolu pretraživača za više informacija" +msgstr "Došlo je do problema pri povezivanju s Plaidovim serverom za autentifikaciju. Provjeri konzolu pretraživača za više informacija" -#: erpnext/accounts/utils.py:1145 +#: erpnext/accounts/utils.py:1146 msgid "There were issues unlinking payment entry {0}." msgstr "Problem s poništavanjem veze unosa plaćanja {0}." @@ -56448,13 +56489,13 @@ msgstr "Račun ima stanje '0' u Osnovnoj Valuti ili u Valuti Računa" msgid "This Fiscal Year" msgstr "Ove Fiskalne Godine" -#: erpnext/stock/doctype/item/item.js:220 +#: erpnext/stock/doctype/item/item.js:235 msgid "This Item is a Template and cannot be used in transactions.
All fields present in the 'Copy Fields to Variant' table in Item Variant Settings will be copied to its variant items." -msgstr "Ovaj Artikal je šablon i ne može se koristiti u transakcijama.
Sva polja prisutna u tabeli 'Kopiraj polja u varijantu' u Postavkama Varijante Artikla bit će kopirana u njene varijante." +msgstr "Ovaj Artikal je predložak i ne može se koristiti u transakcijama.
Sva polja prisutna u tabeli 'Kopiraj polja u varijantu' u Postavkama Varijante Artikla bit će kopirana u njene varijante." -#: erpnext/stock/doctype/item/item.js:277 +#: erpnext/stock/doctype/item/item.js:292 msgid "This Item is a Variant of {0} (Template)." -msgstr "Artikal je Varijanta {0} (Šablon)." +msgstr "Artikal je Varijanta {0} (Predložak)." #: erpnext/setup/doctype/email_digest/email_digest.py:175 msgid "This Month's Summary" @@ -56462,7 +56503,7 @@ msgstr "Sažetak ovog Mjeseca" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:943 msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." -msgstr "Ovaj PDF je zaštićen lozinkom. Molimo postavite ispravnu lozinku za izvod na bankovnom računu i pokušajte ponovo." +msgstr "Ovaj PDF je zaštićen lozinkom. Postavi ispravnu lozinku za izvod na bankovnom računu i pokušajte ponovo." #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1750 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" @@ -56496,7 +56537,7 @@ msgstr "Ova radnja će prekinuti vezu ovog računa sa bilo kojom eksternom uslug #. (Check) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." -msgstr "Ovo omogućava kreiranje prodajnih naloga iz ponuda kojima je istekao rok važenja, pružajući fleksibilnost u obradi naloga uprkos zastarjelim ponudama." +msgstr "Ovo omogućava izradu prodajnih naloga iz ponuda kojima je istekao rok važenja, pružajući fleksibilnost u obradi naloga uprkos zastarjelim ponudama." #: erpnext/assets/doctype/asset/asset.py:438 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." @@ -56536,7 +56577,7 @@ msgstr "Ova faktura je već plaćena." #: erpnext/manufacturing/doctype/bom/bom.js:310 msgid "This is a Template BOM and will be used to make the work order for {0} of the item {1}" -msgstr "Ovo je Šablon Sastavnica i koristit će se za izradu Radnog Naloga za {0} artikal {1}" +msgstr "Ovo je Predložak Sastavnica i koristit će se za izradu Radnog Naloga za {0} artikal {1}" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466 msgid "This is a formula based value." @@ -56551,7 +56592,7 @@ msgstr "Ovo je lokacija na kojoj se skladišti finalni proizvod." #. 'Work Order' #: erpnext/manufacturing/doctype/work_order/work_order.json msgid "This is a location where operations are executed." -msgstr "Ovo je lokacija na kojoj se izvode operacije." +msgstr "Ovo je lokacija na kojoj se izvode radnje." #. Description of the 'Source Warehouse' (Link) field in DocType 'Work Order' #: erpnext/manufacturing/doctype/work_order/work_order.json @@ -56579,7 +56620,7 @@ msgstr "Ovo je osnovna grupa klijenata i ne može se uređivati." msgid "This is a root department and cannot be edited." msgstr "Ovo je Matični odjel i ne može se uređivati." -#: erpnext/setup/doctype/item_group/item_group.js:98 +#: erpnext/setup/doctype/item_group/item_group.js:115 msgid "This is a root item group and cannot be edited." msgstr "Ovo je Nadređena Grupa Artikala i ne može se uređivati." @@ -56605,31 +56646,27 @@ msgstr "Ovo se zasniva na kretanju zaliha. Pogledaj {0} za detalje" #: erpnext/projects/doctype/project/project_dashboard.py:7 msgid "This is based on the Time Sheets created against this project" -msgstr "Ovo se zasniva na Radnim Listovima kreiranim naspram ovog projekata" +msgstr "Ovo se zasniva na Radnim Listovima izrađenim naspram ovog projekata" #: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:7 msgid "This is based on transactions against this Sales Person. See timeline below for details" msgstr "Ovo se zasniva na transakcijama naspram ovog Prodavača. Pogledaj vremensku liniju ispod za detalje" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:107 -msgid "This is considered dangerous from accounting point of view." -msgstr "Ovo se smatra opasnim knjigovodstvene tačke gledišta." - #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:97 msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice" -msgstr "Ovo je urađeno da se omogući Knjigovodstvo za slučajeve kada se Nabavni Račun kreira nakon Nabavne Fakture" +msgstr "Ovo je urađeno da se omogući Knjigovodstvo za zahtjeve kada se Nabavni Račun izradi nakon Nabavne Fakture" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1250 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1261 msgid "This is enabled by default. If you want to plan materials for sub-assemblies of the Item you're manufacturing leave this enabled. If you plan and manufacture the sub-assemblies separately, you can disable this checkbox." msgstr "Ovo je standard omogućeno. Ako želite da planirate materijale za podsklopove artikla koji proizvodite, ostavite ovo omogućeno. Ako planirate i proizvodite podsklopove zasebno, možete onemogućiti ovo polje." -#: erpnext/stock/doctype/item/item.js:1575 +#: erpnext/stock/doctype/item/item.js:1596 msgid "This is for raw material Items that'll be used to create finished goods. If the Item is an additional service like 'washing' that'll be used in the BOM, keep this unchecked." -msgstr "Ovo se odnosi na artikle sirovina koje će se koristiti za izradu gotovog proizvoda. Ako je artikal dodatna usluga kao što je 'povrat' koja će se koristiti u Sastavnici, ne označite ovo." +msgstr "Ovo se odnosi na artikle sirovina koje će se koristiti za izradu gotovog proizvoda. Ako je artikal dodatna usluga kao što je 'povrat' koja će se koristiti u Sastavnici, ne odaberi ovo." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466 msgid "This is not a valid formula. Check the variable used in the formula." -msgstr "Ovo nije važeća formula. Provjerite varijablu korištenu u formuli." +msgstr "Ovo nije važeća formula. Provjeri varijablu korištenu u formuli." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:199 #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:267 @@ -56643,7 +56680,7 @@ msgstr "Ovo je unos bankovnog računa. Ne možete ga uređivati." #: banking/src/components/features/BankStatementImporter/RawTableGrid.tsx:136 msgid "This is the header row. Click to mark the table as having no header." -msgstr "Ovo je red zaglavlja. Kliknite da označite tabelu kao da nema zaglavlje." +msgstr "Ovo je red zaglavlja. Kliknite da odaberi tabelu kao da nema zaglavlje." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:693 #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:708 @@ -56662,7 +56699,7 @@ msgstr "Ovo je ono što sistem očekuje kao završno stanje na vašem bankovnom msgid "This item filter has already been applied for the {0}" msgstr "Ovaj filter artikala je već primijenjen za {0}" -#: erpnext/public/js/shop_floor/shop_floor.js:663 +#: erpnext/public/js/shop_floor/shop_floor.js:699 msgid "This machine can run at most {0} job(s) in parallel. Pause or complete a running job before starting another." msgstr "Ova mašina može paralelno izvršavati najviše {0} radnji. Pauziraj ili završi radnju koji je u toku prije nego što započnete drugu." @@ -56680,9 +56717,9 @@ msgstr "Ovaj modul je planiran za zastarjelost i bit će potpuno uklonjen u verz msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe Helpdesk instead." msgstr "Ovaj modul je planiran za zastarjelost i bit će potpuno uklonjen u verziji 17, umjesto toga koristite Frappe Helpdesk ." -#: erpnext/public/js/shop_floor/shop_floor.js:909 +#: erpnext/public/js/shop_floor/shop_floor.js:945 msgid "This operation requires a Quality Inspection but no template with parameters is configured. Set a Quality Inspection Template on Operation {0} to inspect from the Shop Floor." -msgstr "Ova radnja zahtijeva Kontrolu Kvalitete, ali nije konfiguriran predložak s parametrima. Postavite predložak kontrole kvalitete za radnju {0} za kontrolu iz Proizvodnog Pogona." +msgstr "Ova radnja zahtijeva Kontrolu Kvalitete, ali nije konfiguriran predložak s parametrima. Postavi predložak kontrole kvalitete za radnju {0} za kontrolu iz Proizvodnog Pogona." #: erpnext/stock/doctype/delivery_note/delivery_note.js:509 msgid "This option can be checked to edit the 'Posting Date' and 'Posting Time' fields." @@ -56700,51 +56737,51 @@ msgstr "Ovaj izvještaj prikazuje sve unose u sistemu gdje je datum odob #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:212 msgid "This schedule was created when Asset {0} was adjusted through Asset Value Adjustment {1}." -msgstr "Ovaj raspored je kreiran kada je imovina {0} prilagođena kroz Podešavanje Vrijednosti Imovine {1}." +msgstr "Ovaj raspored je izrađen kada je imovina {0} prilagođena kroz Podešavanje Vrijednosti Imovine {1}." #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:91 msgid "This schedule was created when Asset {0} was consumed through Asset Capitalization {1}." -msgstr "Ovaj raspored je kreiran kada je imovina {0} potrošena kroz kapitalizaciju imovine {1}." +msgstr "Ovaj raspored je izrađen kada je imovina {0} potrošena kroz kapitalizaciju imovine {1}." -#: erpnext/assets/doctype/asset_repair/asset_repair.py:328 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:331 msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}." -msgstr "Ovaj raspored je kreiran kada je imovina {0} popravljena putem Popravka Imovine {1}." +msgstr "Ovaj raspored je izrađen kada je imovina {0} popravljena putem Popravka Imovine {1}." #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:176 msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation." -msgstr "Ovaj raspored je kreiran kada je Imovina {0} vraćena u prvobitno stanje zbog otkazivanja Prodajne Fakture {1}." +msgstr "Ovaj raspored je izrađen kada je Imovina {0} vraćena u prvobitno stanje zbog otkazivanja Prodajne Fakture {1}." #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:459 msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation." -msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena nakon otkazivanja kapitalizacije imovine {1}." +msgstr "Ovaj raspored je izrađen kada je imovina {0} vraćena nakon otkazivanja kapitalizacije imovine {1}." #: erpnext/assets/doctype/asset/depreciation.py:468 msgid "This schedule was created when Asset {0} was restored." -msgstr "Ovaj raspored je kreiran kada je Imovina {0} vraćena." +msgstr "Ovaj raspored je izrađen kada je Imovina {0} vraćena." #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:173 msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}." -msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena putem Prodajne Fakture {1}." +msgstr "Ovaj raspored je izrađen kada je imovina {0} vraćena putem Prodajne Fakture {1}." #: erpnext/assets/doctype/asset/depreciation.py:426 msgid "This schedule was created when Asset {0} was scrapped." -msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana." +msgstr "Ovaj raspored je izrađen kada je imovina {0} rashodovana." #: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." -msgstr "Ovaj raspored je kreiran kada je Imovina {0} bila {1} u novu Imovinu {2}." +msgstr "Ovaj raspored je izrađen kada je Imovina {0} bila {1} u novu Imovinu {2}." #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:162 msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}." -msgstr "Ovaj raspored je kreiran kada je vrijednost imovine {0} bila {1} kroz vrijednost Prodajne Fakture {2}." +msgstr "Ovaj raspored je izrađen kada je vrijednost imovine {0} bila {1} kroz vrijednost Prodajne Fakture {2}." #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:219 msgid "This schedule was created when Asset {0}'s Asset Value Adjustment {1} was cancelled." -msgstr "Ovaj raspored je kreiran kada je Imovina {0} iVrijednost Amortizacije Imovine {1} otkazan." +msgstr "Ovaj raspored je izrađen kada je Imovina {0} iVrijednost Amortizacije Imovine {1} otkazan." #: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:206 msgid "This schedule was created when Asset {0}'s shifts were adjusted through Asset Shift Allocation {1}." -msgstr "Ovaj raspored je kreiran kad su Smjene Imovine {0} prilagođene kroz Dodjelu Smjene Imovine {1}." +msgstr "Ovaj raspored je izrađen kad su Smjene Imovine {0} prilagođene kroz Dodjelu Smjene Imovine {1}." #: banking/src/pages/BankReconciliation.tsx:90 msgid "This screen is not supported on mobile devices." @@ -56771,7 +56808,7 @@ msgstr "Ovaj dobavljač bit će automatski odabran u novim transakcijama nabave" #: erpnext/stock/doctype/delivery_note/delivery_note.js:502 msgid "This table is used to set details about the 'Item', 'Qty', 'Basic Rate', etc." -msgstr "Ova tabela se koristi za postavljanje detalja o 'Artiku', 'Količini', 'Osnovnoj Cijeni', itd." +msgstr "Ova tabela se koristi za postavljanje detalja o 'Artiku', 'Količini', 'Osnovnoj Cjeni', itd." #. Description of a DocType #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json @@ -56809,7 +56846,7 @@ msgstr "Ovo će biti automatski popunjeno ako nije postavljeno." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:265 msgid "This will just suggest creating a new entry, and will not automatically create it." -msgstr "Ovo će samo predložiti kreiranje novog unosa, a neće ga automatski kreirati." +msgstr "Ovo će samo predložiti izradu novog unosa, a neće ga automatski izraditi." #. Description of the 'Create User Permission' (Check) field in DocType #. 'Employee' @@ -56839,7 +56876,7 @@ msgstr "Prag za Prijedlog" #. Label of the threshold_percentage (Percent) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Threshold for Suggestion (In Percentage)" -msgstr "Prag za Prijedlog (u Procentima)" +msgstr "Prag za Prijedlog (u Postotcima)" #. Label of the thumbnail (Data) field in DocType 'BOM' #. Label of the thumbnail (Data) field in DocType 'BOM Website Operation' @@ -56863,7 +56900,7 @@ msgstr "Vrijeme (u minutama)" #. Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Time Between Operations (Mins)" -msgstr "Vrijeme Između Operacija (min)" +msgstr "Vrijeme Između Radnji (min)" #. Label of the time_in_mins (Float) field in DocType 'Job Card Time Log' #: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json @@ -57043,7 +57080,7 @@ msgstr "Za Fakturisati" msgid "To Currency" msgstr "Za Valutu" -#: erpnext/controllers/accounts_controller.py:530 +#: erpnext/controllers/accounts_controller.py:515 #: erpnext/setup/doctype/holiday_list/holiday_list.py:121 msgid "To Date cannot be before From Date" msgstr "Do datuma ne može biti prije Od datuma" @@ -57054,7 +57091,7 @@ msgstr "Do datuma ne može biti prije Od datuma" msgid "To Date cannot be before From Date." msgstr "Do datuma ne može biti prije Od datuma." -#: erpnext/accounts/report/financial_statements.py:141 +#: erpnext/accounts/report/financial_statements.py:318 msgid "To Date cannot be less than From Date" msgstr "Do datuma ne može biti ranije od Od datuma" @@ -57078,7 +57115,7 @@ msgstr "Do Datuma i Vremena" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:118 msgid "To Delete list generated with {0} DocTypes" -msgstr "Za brisanje liste generirane sa {0} DocTypes" +msgstr "Za brisanje liste izrađene sa {0} DocTypes" #. Option for the 'Sales Order Status' (Select) field in DocType 'Production #. Plan' @@ -57117,7 +57154,7 @@ msgstr "Do Datuma isteka roka" #. Label of the to_employee (Link) field in DocType 'Asset Movement Item' #: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json msgid "To Employee" -msgstr "Za Personal" +msgstr "Za Osoblje" #. Label of the to_fiscal_year (Link) field in DocType 'Budget' #: erpnext/accounts/doctype/budget/budget.json @@ -57141,8 +57178,8 @@ msgstr "Do Datuma Fakture" #. Option for the 'Status' (Select) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json -#: erpnext/public/js/templates/shop_floor_template.html:899 -#: erpnext/public/js/templates/shop_floor_template.html:909 +#: erpnext/public/js/templates/shop_floor_template.html:919 +#: erpnext/public/js/templates/shop_floor_template.html:929 msgid "To Manufacture" msgstr "Za Proizvodnju" @@ -57269,11 +57306,11 @@ msgstr "U Skladište" msgid "To Warehouse (Optional)" msgstr "Za Skladište (Opcija)" -#: erpnext/manufacturing/doctype/bom/bom.js:1002 +#: erpnext/manufacturing/doctype/bom/bom.js:1006 msgid "To add Operations tick the 'With Operations' checkbox." -msgstr "Da biste dodali Operacije, označite polje 'S Operacijama'." +msgstr "Da biste dodali Radnje, odaberi polje 'S Radnjima'." -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:741 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:768 msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Da se doda podizvođačka sirovina artikala ako je Uključi Rastavljene Artikle onemogućeno." @@ -57293,7 +57330,7 @@ msgstr "Da biste dozvolili prekomjerno primanje/isporuku, ažuriraj \"Dozvoli pr #. 'Inventory Dimension' #: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json msgid "To apply condition on parent field use parent.field_name and to apply condition on child table use doc.field_name. Here field_name could be based on the actual column name of the respective field." -msgstr "Za primjenu uvjeta na nadređeno polje koristite parent.field_name i za primjenu uvjeta na podređenu tablicu koristite doc.field_name. Ovdje field_name može biti zasnovano na stvarnom imenu kolone odgovarajućeg polja." +msgstr "Za primjenu uslova na nadređeno polje koristite parent.field_name i za primjenu uslova na podređenu tablicu koristite doc.field_name. Ovdje field_name može biti zasnovano na stvarnom imenu kolone odgovarajućeg polja." #. Label of the delivered_by_supplier (Check) field in DocType 'Purchase Order #. Item' @@ -57311,13 +57348,13 @@ msgstr "Da biste otkazali ovu prodajnu fakturu, morate otkazati završni unos Ka #: erpnext/accounts/doctype/payment_request/payment_request.py:161 msgid "To create a Payment Request reference document is required" -msgstr "Za kreiranje Zahtjeva Plaćanja obavezan je referentni dokument" +msgstr "Za izradu Zahtjeva Plaćanja obavezan je referentni dokument" #: erpnext/assets/doctype/asset_category/asset_category.py:120 msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "Da biste omogućili knjigovodstvo nedovršenih kapitalnih radova, morate odabrati Račun nedovršenih kapitalnih radova u tabeli računa" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:761 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." msgstr "Uključivanje artikala bez zaliha u planiranje Materijalnog Naloga. tj. artikle za koje je 'Održavanje Zaliha'.polje poništeno." @@ -57330,25 +57367,25 @@ msgstr "Za uključivanje troškova podsklopova i sekundarnih artikala u gotove p #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1986 #: erpnext/accounts/services/taxes.py:301 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" -msgstr "Da biste uključili PDV u red {0} u cijenu artikla, PDV u redovima {1} također moraju biti uključeni" +msgstr "Da biste uključili PDV u red {0} u cjenu artikla, PDV u redovima {1} također moraju biti uključeni" -#: erpnext/stock/doctype/item/item.py:701 +#: erpnext/stock/doctype/item/item.py:706 msgid "To merge, following properties must be same for both items" -msgstr "Za spajanje, sljedeća svojstva moraju biti ista za obje stavke" +msgstr "Za spajanje, sljedeća svojstva moraju biti ista za oba artikla" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:59 msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled." -msgstr "Da se cijenovno pravilo ne primjeni u određenoj transakciji, sva primenjiva cijenovna pravila treba onemogućiti." +msgstr "Da se cjenovno pravilo ne primjeni u određenoj transakciji, sva primenjiva cjenovna pravila treba onemogućiti." #: erpnext/accounts/doctype/account/account.py:565 msgid "To overrule this, enable '{0}' in company {1}" -msgstr "Da poništite ovo, omogući '{0}' u kompaniji {1}" +msgstr "Da poništite ovo, omogući '{0}' u poduzeću {1}" #: banking/src/components/features/Settings/KeyboardShortcuts.tsx:80 msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "Da biste odabrali više transakcija istovremeno, pritisnite i držite tipku Shift." -#: erpnext/controllers/item_variant.py:208 +#: erpnext/controllers/item_variant.py:270 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Da i dalje nastavite s uređivanjem ove vrijednosti atributa, omogući {0} u Postavkama Varijante Artikla." @@ -57358,15 +57395,15 @@ msgstr "Da biste podnijeli fakturu bez nabavnog naloga, postavi {0} kao {1} u {2 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:490 msgid "To submit the invoice without purchase receipt please set {0} as {1} in {2}" -msgstr "Da biste podnijeli fakturu bez nabavnog računa, postavite {0} kao {1} u {2}" +msgstr "Da biste podnijeli fakturu bez nabavnog računa, postavi {0} kao {1} u {2}" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:43 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:233 msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Da biste koristili drugi Finansijski Registar, poništi 'Uključi Standard Imovinu Finansijskog Registra'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 -#: erpnext/accounts/report/financial_statements.py:648 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:761 +#: erpnext/accounts/report/financial_statements.py:826 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 #: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 @@ -57374,7 +57411,7 @@ msgstr "Da biste koristili drugi Finansijski Registar, poništi 'Uključi Standa msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Da biste koristili drugi Finansijski Registar, poništite oznaku 'Obuhvati standard Finansijski Registar unose'" -#: erpnext/public/js/templates/shop_floor_template.html:1028 +#: erpnext/public/js/templates/shop_floor_template.html:1048 msgid "Today's Sessions" msgstr "Današnje Sesije" @@ -57416,6 +57453,26 @@ msgstr "Tonska Sila (Metrička)" msgid "Too many columns. Export the report and print it using a spreadsheet application." msgstr "Previše kolona. Izvezi izvještaj i ispiši ga pomoću aplikacije za proračunske tablice." +#. Label of a Card Break in the Manufacturing Workspace +#. Label of the tools (Column Break) field in DocType 'Email Digest' +#. Label of a Card Break in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order/purchase_order.js:552 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:626 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:61 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:149 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:456 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:465 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:84 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:123 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/manufacturing.json +#: erpnext/workspace_sidebar/stock.json +msgid "Tools" +msgstr "Alati" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Torr" @@ -57453,8 +57510,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Ukupno (Valuta Poduzeća)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:148 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:149 msgid "Total (Credit)" msgstr "Ukupno (Kredit)" @@ -57563,7 +57620,7 @@ msgstr "Ukupan Iznos u Riječima" msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Ukupni Primjenjive Naknade u tabeli Artikla Nabavnog Naloga moraju biti isti kao i Ukupni PDV i Naknade" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:237 msgid "Total Asset" msgstr "Ukupna Imovina" @@ -57572,10 +57629,6 @@ msgstr "Ukupna Imovina" msgid "Total Asset Cost" msgstr "Ukupni Trošak Imovine" -#: erpnext/assets/dashboard_fixtures.py:158 -msgid "Total Assets" -msgstr "Ukupna Imovina" - #. Label of the total_billable_amount (Currency) field in DocType 'Timesheet' #: erpnext/projects/doctype/timesheet/timesheet.json msgid "Total Billable Amount" @@ -57745,7 +57798,7 @@ msgstr "Ukupna Isporučena Količina" msgid "Total Demand (Past Data)" msgstr "Ukupna Potražnja (Prethodni Podatci)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:244 msgid "Total Equity" msgstr "Ukupni Kapital" @@ -57754,11 +57807,11 @@ msgstr "Ukupni Kapital" msgid "Total Estimated Distance" msgstr "Ukupna Procijenjena Udaljenost" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:137 msgid "Total Expense" msgstr "Ukupni Troškovi" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:133 msgid "Total Expense This Year" msgstr "Ukupni Troškovi ove Godine" @@ -57796,11 +57849,11 @@ msgstr "Ukupno Vrijeme Čekanja" msgid "Total Holidays" msgstr "Ukupno Praznika" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:136 msgid "Total Income" msgstr "Ukupan Prihod" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:132 msgid "Total Income This Year" msgstr "Ukupan Prihod ove Godine" @@ -57822,28 +57875,28 @@ msgstr "Ukupan Fakturisani Iznos" #: erpnext/support/report/issue_summary/issue_summary.py:83 msgid "Total Issues" -msgstr "Ukupno Slučajeva" +msgstr "Ukupno Zahtjeva" #: erpnext/selling/page/point_of_sale/pos_item_cart.js:96 msgid "Total Items" msgstr "Ukupno Artikala" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:24 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:26 msgid "Total Landed Cost" -msgstr "Ukupna Kupovna Vrijednost" +msgstr "Ukupna Nabavna Vrijednost" #. Label of the total_taxes_and_charges (Currency) field in DocType 'Landed #. Cost Voucher' #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json msgid "Total Landed Cost (Company Currency)" -msgstr "Ukupna Kupovna Vrijednost (Valuta Poduzeća)" +msgstr "Ukupna Nabavna Vrijednost (Valuta Poduzeća)" #. Label of the total_vouchers (Int) field in DocType 'Repost Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json msgid "Total Ledgers" msgstr "Ukupno Knjiženih Naloga" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:240 msgid "Total Liability" msgstr "Ukupno Obaveze" @@ -58087,7 +58140,7 @@ msgstr "Ukupno Zadataka" msgid "Total Tax" msgstr "Ukupno PDV" -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:86 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:96 msgid "Total Taxable Amount" msgstr "Ukupan Oporezivi Iznos" @@ -58249,9 +58302,9 @@ msgstr "Ukupno vrijeme rada na Radnoj Stanici (u Satima)" #: erpnext/controllers/selling_controller.py:258 msgid "Total allocated percentage for sales team should be 100" -msgstr "Ukupna procentualna dodjela za prodajni tim treba biti 100" +msgstr "Ukupna postotna dodjela za prodajni tim treba biti 100" -#: erpnext/selling/doctype/customer/customer.py:197 +#: erpnext/selling/doctype/customer/customer.py:205 msgid "Total contribution percentage should be equal to 100" msgstr "Ukupan procenat doprinosa treba da bude jednak 100" @@ -58280,10 +58333,10 @@ msgstr "Ukupna procentulna suma naspram Centara Troškova treba da bude 100" msgid "Total quantity in delivery schedule cannot be greater than the item quantity" msgstr "Ukupna količina u rasporedu dostave ne može biti veća od količine artikla" -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:762 -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:763 -#: erpnext/accounts/report/financial_statements.py:351 -#: erpnext/accounts/report/financial_statements.py:352 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:770 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:771 +#: erpnext/accounts/report/financial_statements.py:525 +#: erpnext/accounts/report/financial_statements.py:526 msgid "Total {0} ({1})" msgstr "Ukupno {0} ({1})" @@ -58291,11 +58344,11 @@ msgstr "Ukupno {0} ({1})" msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "Ukupni iznos {0} a za sve artikle je nula, možda biste trebali promijeniti 'Raspodjeli Troškove na Osnovu'" -#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +#: erpnext/controllers/trends.py:26 erpnext/controllers/trends.py:33 msgid "Total(Amt)" msgstr "Ukupno (Iznos)" -#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +#: erpnext/controllers/trends.py:26 erpnext/controllers/trends.py:33 msgid "Total(Qty)" msgstr "Ukupno (Količina)" @@ -58410,7 +58463,7 @@ msgstr "Datum Transakcije" msgid "Transaction Dates" msgstr "Datumi Transakcija" -#: erpnext/setup/doctype/company/company.py:1140 +#: erpnext/setup/doctype/company/company.py:1142 msgid "Transaction Deletion Document {0} has been triggered for company {1}" msgstr "Dokument Brisanju Transakcije {0} je pokrenut za {1}" @@ -58591,10 +58644,11 @@ msgstr "Godišnja Historija Transakcije" msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions." msgstr "Transakcije naspram Poduzeća već postoje! Kontni Plan se može uvesti samo za poduzeće bez transakcija." -#. Description of the 'Credit Limit' (Table) field in DocType 'Customer' +#. Description of the 'Credit & Overdue Limits' (Table) field in DocType +#. 'Customer' #: erpnext/selling/doctype/customer/customer.json -msgid "Transactions are blocked or warned when outstanding balance exceeds this amount." -msgstr "Transakcije se blokiraju ili upozoravaju kada nepodmireni saldo premaši ovaj iznos." +msgid "Transactions are blocked when the outstanding balance exceeds the credit limit. When the overdue billing setting is enabled, new invoices are also blocked when the customer's overdue amount exceeds the overdue billing threshold." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:239 msgid "Transactions to be imported into the system" @@ -58623,7 +58677,7 @@ msgstr "Transakcije koje koriste Prodajnu Fakturu Kase su onemogućene." #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json #: erpnext/accounts/doctype/share_transfer/share_transfer.json #: erpnext/assets/doctype/asset_movement/asset_movement.json -#: erpnext/public/js/templates/shop_floor_template.html:975 +#: erpnext/public/js/templates/shop_floor_template.html:995 #: erpnext/stock/doctype/item_reorder/item_reorder.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:645 @@ -58635,7 +58689,7 @@ msgstr "Prijenos" msgid "Transfer Account" msgstr "Račun Prijenosa" -#: erpnext/assets/doctype/asset/asset.js:160 +#: erpnext/assets/doctype/asset/asset.js:168 msgid "Transfer Asset" msgstr "Prijenos Imovine" @@ -58645,7 +58699,7 @@ msgstr "Prijenos Imovine" msgid "Transfer Extra Raw Materials to WIP (%)" msgstr "Prijenos dodatnih sirovina u Posao U Toku (%)" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:483 msgid "Transfer From Warehouses" msgstr "Prijenos iz Skladišta" @@ -58658,12 +58712,12 @@ msgid "Transfer Material Against" msgstr "Prenesi Materijal Naspram" #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:92 -#: erpnext/public/js/templates/shop_floor_template.html:712 -#: erpnext/public/js/templates/shop_floor_template.html:798 +#: erpnext/public/js/templates/shop_floor_template.html:732 +#: erpnext/public/js/templates/shop_floor_template.html:818 msgid "Transfer Materials" msgstr "Prenesi Materijal" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:453 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:477 msgid "Transfer Materials For Warehouse {0}" msgstr "Prijenos Materijala za Skladište {0}" @@ -58688,7 +58742,7 @@ msgstr "Tip Prijenosa" msgid "Transfer and Issue" msgstr "Prenesi i Izdaj" -#: erpnext/public/js/shop_floor/shop_floor.js:1379 +#: erpnext/public/js/shop_floor/shop_floor.js:1414 msgid "Transfer materials" msgstr "Prenesi Materijale" @@ -58742,7 +58796,7 @@ msgstr "Preneseno u" msgid "Transit" msgstr "Tranzit" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:611 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:610 msgid "Transit Entry" msgstr "Unos Tranzita" @@ -58939,7 +58993,7 @@ msgstr "Tip dokumenta za preimenovanje." #. Template' #: erpnext/accounts/doctype/financial_report_template/financial_report_template.json msgid "Type of financial statement this template generates" -msgstr "Tip finansijskog izvještaja koji ovaj šablon generira" +msgstr "Tip finansijskog izvještaja koji ovaj predložak generira" #: erpnext/config/projects.py:61 msgid "Types of activities for Time Logs" @@ -59048,7 +59102,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:90 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:865 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -59076,7 +59130,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:92 #: erpnext/stock/report/item_prices/item_prices.py:55 #: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 @@ -59142,7 +59196,7 @@ msgstr "Detalji Jedinice Konverzije" msgid "UOM Conversion Factor" msgstr "Faktor Konverzije Jedinice" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:526 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Faktor Konverzije Jedinice({0} -> {1}) nije pronađen za artikal: {2}" @@ -59161,7 +59215,7 @@ msgstr "Standard Vrijednosti Jedinice " msgid "UOM Name" msgstr "Naziv Jedinice" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1686 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1728 msgid "UOM conversion factor required for UOM: {0} in Item: {1}" msgstr "Faktor Konverzije je obavezan za Jedinicu: {0} za Artikal: {1}" @@ -59222,16 +59276,16 @@ msgstr "Nije moguće preuzeti detalje o DocType. Obratite se administratoru sist #: erpnext/setup/utils.py:158 msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually" -msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. Kreiraj zapis o razmjeni valuta ručno" +msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. Izradi zapis o razmjeni valuta ručno" #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:165 #: erpnext/accounts/doctype/gl_entry/gl_entry.py:313 msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." -msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. Kreiraj zapis o razmjeni valuta ručno." +msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. Izradi zapis o razmjeni valuta ručno." #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." -msgstr "Nije moguće pronaći vremenski termin u narednih {0} dana za operaciju {1}. Molimo povećajte 'Planiranje Kapaciteta za (Dana)' u {2}." +msgstr "Nije moguće pronaći vremenski termin u narednih {0} dana za radnju {1}. Molimo povećajte 'Planiranje Kapaciteta za (Dana)' u {2}." #: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85 msgid "Unable to find variable: {0}" @@ -59265,10 +59319,10 @@ msgstr "Nefakturisani Nalozi" msgid "Unblock Invoice" msgstr "Deblokiraj Fakturu" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:95 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:96 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:319 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:320 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -59339,7 +59393,7 @@ msgstr "Jedinica" #: erpnext/accounts/services/child_item_update.py:515 msgid "Unit Price" -msgstr "Jedinična Cijena" +msgstr "Jedinična Cjena" #: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" @@ -59354,7 +59408,7 @@ msgstr "Jedinica Mjere" msgid "Unit of Measure (UOM)" msgstr "Jedinica Mjere" -#: erpnext/stock/doctype/item/item.py:454 +#: erpnext/stock/doctype/item/item.py:459 msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table" msgstr "Jedinica mjere {0} je unesena više puta u Tablicu Faktora Konverzije" @@ -59458,7 +59512,6 @@ msgstr "Poništi Usklađivanje" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json -#: erpnext/workspace_sidebar/banking.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Unreconcile Payment" @@ -59499,7 +59552,7 @@ msgstr "Neusaglašeni Unosi" msgid "Unreconciled Transactions" msgstr "Neusklađene Transakcije" -#: erpnext/manufacturing/doctype/work_order/work_order.js:955 +#: erpnext/manufacturing/doctype/work_order/work_order.js:959 #: erpnext/selling/doctype/sales_order/sales_order.js:122 #: erpnext/stock/doctype/pick_list/pick_list.js:166 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192 @@ -59512,17 +59565,17 @@ msgstr "Otkaži Rezervaciju" msgid "Unreserve Stock" msgstr "Otkaži Rezervaciju Zaliha" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:321 msgid "Unreserve for Raw Materials" msgstr "Poništi rezervaciju za Sirovine" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:269 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295 msgid "Unreserve for Sub-assembly" msgstr "Poništi rezervacija za Podsklop" #: erpnext/public/js/stock_reservation.js:281 #: erpnext/selling/doctype/sales_order/sales_order.js:552 -#: erpnext/stock/doctype/pick_list/pick_list.js:321 +#: erpnext/stock/doctype/pick_list/pick_list.js:322 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:389 msgid "Unreserving Stock..." msgstr "Otkazivanje Zaliha u toku..." @@ -59557,10 +59610,6 @@ msgstr "Nepotpisano" msgid "Unsubscribe from this Email Digest" msgstr "Otkaži pretplatu na ovaj sažetak e-pošte" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 -msgid "Unsupported Feature" -msgstr "Nepodržana Funkcija" - #. Option for the 'Status' (Select) field in DocType 'Appointment' #: erpnext/crm/doctype/appointment/appointment.json msgid "Unverified" @@ -59574,7 +59623,7 @@ msgstr "Neprovjereni Webhook Podaci" msgid "Up" msgstr "Gore" -#: erpnext/public/js/templates/shop_floor_template.html:940 +#: erpnext/public/js/templates/shop_floor_template.html:960 msgid "Up Next" msgstr "Sljedeći" @@ -59634,7 +59683,7 @@ msgstr "Automatski ažuriraj trošak Sastavnice" #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Update BOM cost automatically via scheduler, based on the latest Valuation Rate/Price List Rate/Last Purchase Rate of raw materials" -msgstr "Automatski ažuriraj trošak putem raspoređivača, na osnovu najnovije stope vrednovanja/cijene cjenovnika/posljednje cijene nabave sirovina" +msgstr "Automatski ažuriraj trošak putem raspoređivača, na osnovu najnovije stope vrednovanja/cjene cjenovnika/posljednje cjene nabave sirovina" #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:32 msgid "Update Batch Qty" @@ -59688,7 +59737,7 @@ msgstr "Ažuriraj Trošak Potrošenog Materijala u Projektu" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "Update Cost" -msgstr "Ažuriraj Cijenu" +msgstr "Ažuriraj Cjenu" #: erpnext/accounts/doctype/cost_center/cost_center.js:19 #: erpnext/accounts/doctype/cost_center/cost_center.js:52 @@ -59705,7 +59754,7 @@ msgstr "Ažuriraj Trenutne Zalihe" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:955 +#: erpnext/public/js/utils.js:967 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59735,11 +59784,11 @@ msgstr "Ažuriraj Format Ispisa" #. Label of the get_stock_and_rate (Button) field in DocType 'Stock Entry' #: erpnext/stock/doctype/stock_entry/stock_entry.json msgid "Update Rate and Availability" -msgstr "Ažuriraj Cijenu i Dostupnost" +msgstr "Ažuriraj Cjenu i Dostupnost" #: erpnext/buying/doctype/purchase_order/purchase_order.js:541 msgid "Update Rate as per Last Purchase" -msgstr "Ažuriraj Cijenu prema Posljednjoj Nabavi" +msgstr "Ažuriraj Cjenu prema Posljednjoj Nabavi" #. Label of the update_stock (Check) field in DocType 'POS Invoice' #. Label of the update_stock (Check) field in DocType 'POS Profile' @@ -59761,13 +59810,13 @@ msgstr "Ažuriraj Tip" #. Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Update existing Price List Rate" -msgstr "Ažuriraj postojeću Cijenu Cijenovnika" +msgstr "Ažuriraj postojeću Cjenu Cjenovnika" #. Label of the update_latest_price_in_all_boms (Button) field in DocType 'BOM #. Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "Update latest price in all BOMs" -msgstr "Ažuriraj najnoviju cijenu u svim Sastavnicama" +msgstr "Ažuriraj najnoviju cjenu u svim Sastavnicama" #: erpnext/assets/doctype/asset/asset.py:480 msgid "Update stock must be enabled for the purchase invoice {0}" @@ -59803,11 +59852,11 @@ msgstr "Ažurirani {0} red(ovi) finansijskog izvještaja s novim nazivom kategor msgid "Updating Costing and Billing fields against this Project..." msgstr "Ažuriranje Troškova i Fakturisanje za Projekat..." -#: erpnext/stock/doctype/item/item.py:1541 +#: erpnext/stock/doctype/item/item.py:1546 msgid "Updating Variants..." msgstr "Ažuriranje Varijanti u toku..." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1212 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1223 msgid "Updating Work Order status" msgstr "Ažuriranje statusa radnog naloga u toku" @@ -59815,7 +59864,7 @@ msgstr "Ažuriranje statusa radnog naloga u toku" msgid "Updating details." msgstr "Ažuriranje detalja." -#: erpnext/public/js/shop_floor/shop_floor.js:1116 +#: erpnext/public/js/shop_floor/shop_floor.js:1152 msgid "Updating job card..." msgstr "Ažuriranje radne kartice..." @@ -59895,7 +59944,7 @@ msgstr "Koristi Standard Centar Troškova Zaokruživanja poduzeća" #. 'Sales Invoice' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Use Company default Cost Center for Round off" -msgstr "Koristi Standard Centar Troškova Zaokruživanja kompanije" +msgstr "Koristi Standard Centar Troškova Zaokruživanja poduzeća" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:146 msgid "Use Default Warehouse" @@ -60001,14 +60050,14 @@ msgstr "Koristi Prijedlog" msgid "Use Transaction Date Exchange Rate" msgstr "Koristi Devizni Kurs Datuma Transakcije" -#: erpnext/projects/doctype/project/project.py:639 +#: erpnext/projects/doctype/project/project.py:669 msgid "Use a name that is different from previous project name" msgstr "Koristite naziv koji se razlikuje od naziva prethodnog projekta" #. Label of the use_for_shopping_cart (Check) field in DocType 'Tax Rule' #: erpnext/accounts/doctype/tax_rule/tax_rule.json msgid "Use for Shopping Cart" -msgstr "Koristi za Kupovnu Korpu" +msgstr "Koristi za Nabavnu Korpu" #. Label of the use_legacy_budget_controller (Check) field in DocType 'Accounts #. Settings' @@ -60026,7 +60075,7 @@ msgstr "Koristite stari kontroler za Verifikat Zatvaranje Perioda" #. 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Use prices from Default Price List as fallback" -msgstr "Koristite cijene iz Standard Cjenovnika kao Rezervnu Opciju" +msgstr "Koristite cjene iz Standard Cjenovnika kao Rezervnu Opciju" #. Description of the 'Sales Order Date' (Date) field in DocType 'Sales Order #. Item' @@ -60044,7 +60093,13 @@ msgstr "Koristi se za transakcije između poduzeća" #. DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Used for items valued at Standard Cost: the difference between the purchase price and the standard rate is booked here." -msgstr "Koristi se za artikle vrednovane po Standardnim Troškovima: ovdje se knjiži razlika između nabavne i standardne cijene." +msgstr "Koristi se za artikle vrednovane po Standardnim Troškovima: ovdje se knjiži razlika između nabavne i standardne cjene." + +#. Description of the 'Expenses Added To Stock Contra Account' (Link) field in +#. DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Used to balance the books when recording expenses added to stock" +msgstr "" #. Description of the 'Purchase Expense Contra Account' (Link) field in DocType #. 'Item Default' @@ -60061,7 +60116,7 @@ msgstr "Koristi se za odabir odgovarajućeg reda stopa unutar kategorije PDV-a z #. Description of the 'Account Category' (Link) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json msgid "Used with Financial Report Template" -msgstr "Koristi se s Šablonom Financijskog Izvještaja" +msgstr "Koristi se s Predložakom Financijskog Izvještaja" #: erpnext/setup/install.py:237 msgid "User Forum" @@ -60087,11 +60142,15 @@ msgstr "Napomena Korisnika" msgid "User Resolution Time" msgstr "Korisnikovo Vrijeme Rješenja" +#: erpnext/accounts/party.py:441 +msgid "User don't have permissions to select/read this account." +msgstr "Korisnik nema dozvole za odabir/čitanje ovog računa." + #: erpnext/accounts/doctype/pricing_rule/utils.py:593 msgid "User has not applied rule on the invoice {0}" msgstr "Korisnik nije primijenio pravilo na fakturi {0}" -#: erpnext/crm/frappe_crm_api.py:190 +#: erpnext/crm/frappe_crm_api.py:197 msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." msgstr "Korisniku nije dozvoljeno sinhroniziranje podataka iz Prodajne Podrške u Sistem. Kontaktiraj Odgovornog Sistema." @@ -60113,17 +60172,17 @@ msgstr "Korisnik {0} je onemogućen. Odaberi važećeg korisnika/blagajnika" #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." -msgstr "Korisnik {0}: Uklonjena uloga samoposluživanja zaposlenika jer nema mapiranog zaposlenika." +msgstr "Korisnik {0}: Uklonjena uloga samoposluživanja Osoblja jer nema mapiranog Osoblja." #: erpnext/setup/doctype/employee/employee.py:360 msgid "User {0}: Removed Employee role as there is no mapped employee." -msgstr "Korisnik {0}: Uklonjena uloga personala jer nema mapiranog personala." +msgstr "Korisnik {0}: Uklonjena uloga Osoblja jer nema mapiranog Osoblja." #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Users can enable the checkbox If they want to adjust the incoming rate (set using purchase receipt) based on the purchase invoice rate." -msgstr "Korisnici mogu omogućiti potvrdni okvir Ako žele prilagoditi ulaznu cijenu (podešenu pomoću nabavnog računa) na osnovu cijene nabavne fakture." +msgstr "Korisnici mogu omogućiti potvrdni okvir Ako žele prilagoditi ulaznu cjenu (podešenu pomoću nabavnog računa) na osnovu cjene nabavne fakture." #. Description of the 'Track Semi Finished Goods' (Check) field in DocType #. 'BOM' @@ -60148,15 +60207,21 @@ msgstr "Korisnicima sa ovom ulogom je dozvoljeno da fakturišu iznad procentualn msgid "Users with this role are allowed to over deliver/receive against orders above the allowance percentage" msgstr "Korisnicima sa ovom ulogom je dozvoljena prekomjerna Dostava/Primanje naspram narudžbi iznad procentualnog odobrenja" +#. Description of the 'Role allowed to bypass overdue billing limit' (Link) +#. field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Users with this role can still submit invoices for customers over their overdue billing threshold." +msgstr "" + #. Description of the 'Role to Notify on Depreciation Failure' (Link) field in #. DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Users with this role will be notified if the asset depreciation gets failed" msgstr "Korisnici s ovom ulogom bit će obaviješteni ako amortizacija imovine ne uspije" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:103 -msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative." -msgstr "Korištenje negativnih zaliha onemogućava FIFO/Pokretni Prosjek vrednovanja kada je zaliha negativna." +#: erpnext/public/js/utils.js:569 +msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative. This is considered dangerous from accounting point of view.
Do you still want to enable negative inventory?" +msgstr "Korištenje negativnih zaliha onemogućava FIFO/pokretni prosjek vrednovanja kada su zalihe negativne. Ovo se smatra opasnim sa knjigovodstvenog stanovišta.
Želite li i dalje omogućiti negativne zalihe?" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220 @@ -60260,7 +60325,7 @@ msgstr "Vrijedi do" msgid "Valid for Countries" msgstr "Vrijedi za Zemlje" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:302 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:320 msgid "Valid from and valid upto fields are mandatory for the cumulative" msgstr "Važ od i važi do polja su obavezna za kumulativno" @@ -60290,7 +60355,7 @@ msgstr "Potvrdi Komponente i Količine po Listi Materijala" #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Validate Material Transfer warehouses" -msgstr "Validiraj Skladišta za Prijenos Materijala" +msgstr "Potvrdi Skladišta za Prijenos Materijala" #. Label of the validate_negative_stock (Check) field in DocType 'Inventory #. Dimension' @@ -60302,7 +60367,7 @@ msgstr "Potvrdi Negativne Zalihe" #. 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json msgid "Validate Pricing Rule" -msgstr "Potvrdi Pravilo Cijena" +msgstr "Potvrdi Pravilo Cjena" #. Label of the validate_stock_on_save (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -60319,7 +60384,7 @@ msgstr "Potvrdi Potrošenu Količinu (Prema Sastavnici)" #. Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Validate selling price for Item against purchase or valuation rate" -msgstr "Potvrdi Prodajnu Cijenu Artikla naspram Nabavne Cijene ili Stope Vrednovanja" +msgstr "Potvrdi Prodajnu Cjenu Artikla naspram Nabavne Cjene ili Stope Vrednovanja" #. Label of the validity_details_section (Section Break) field in DocType #. 'Lower Deduction Certificate' @@ -60363,7 +60428,7 @@ msgstr "Tip Polja Vrijednovanja" msgid "Valuation Method" msgstr "Metoda Vrijednovanja" -#: erpnext/stock/doctype/item/item.py:1074 +#: erpnext/stock/doctype/item/item.py:1079 msgid "Valuation Method cannot be changed to or from 'Standard Cost' for {0} because stock transactions already exist for it." msgstr "Metoda vrednovanja se ne može promijeniti u ili iz 'Standardni Trošak' za {0} jer za nju već postoje transakcije zaliha." @@ -60393,14 +60458,14 @@ msgstr "Metoda Vrednovanja Artikla {0} mora biti postavljena na 'Standardni Tro #. Label of the valuation_rate (Currency) field in DocType 'Stock #. Reconciliation Item' #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:354 +#: erpnext/accounts/report/gross_profit/gross_profit.py:356 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json -#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.js:972 +#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.js:993 #: erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -60408,7 +60473,7 @@ msgstr "Metoda Vrednovanja Artikla {0} mora biti postavljena na 'Standardni Tro #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/report/available_serial_no/available_serial_no.py:164 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:90 #: erpnext/stock/report/item_prices/item_prices.py:57 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68 #: erpnext/stock/report/stock_balance/stock_balance.py:563 @@ -60419,19 +60484,19 @@ msgstr "Procijenjena Vrijednost" msgid "Valuation Rate (In / Out)" msgstr "Stopa Vrednovnja (Ulaz / Izlaz)" -#: erpnext/stock/stock_ledger.py:2161 +#: erpnext/stock/stock_ledger.py:2209 msgid "Valuation Rate Missing" msgstr "Nedostaje Stopa Vrednovanja" -#: erpnext/stock/doctype/item/item.py:1652 +#: erpnext/stock/doctype/item/item.py:1657 msgid "Valuation Rate cannot be negative." msgstr "Stopa Vrednovanja ne može biti negativna." -#: erpnext/stock/stock_ledger.py:2139 +#: erpnext/stock/stock_ledger.py:2187 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Stopa Vrednovanja za artikal {0}, je obavezna za knjigovodstvene unose za {1} {2}." -#: erpnext/stock/doctype/item/item.py:316 +#: erpnext/stock/doctype/item/item.py:321 msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Procijenjano Vrijednovanje je obavezno ako se unese Početna Zaliha" @@ -60589,13 +60654,13 @@ msgstr "Odstupanje" msgid "Variance ({})" msgstr "Odstupanje ({})" -#: erpnext/stock/doctype/item/item.js:267 +#: erpnext/stock/doctype/item/item.js:282 #: erpnext/stock/doctype/item/item_list.js:61 #: erpnext/stock/report/item_variant_details/item_variant_details.py:74 msgid "Variant" msgstr "Varijanta" -#: erpnext/stock/doctype/item/item.py:968 +#: erpnext/stock/doctype/item/item.py:973 msgid "Variant Attribute Error" msgstr "Greška Atributa Varijante" @@ -60614,11 +60679,11 @@ msgstr "Varijanta Sastavnice" msgid "Variant Based On" msgstr "Varijanta zasnovana na" -#: erpnext/stock/doctype/item/item.py:996 +#: erpnext/stock/doctype/item/item.py:1001 msgid "Variant Based On cannot be changed" msgstr "Varijanta zasnovana na nemože se promijeniti" -#: erpnext/stock/doctype/item/item.js:243 +#: erpnext/stock/doctype/item/item.js:258 msgid "Variant Details Report" msgstr "Izvještaj Detalja Varijante" @@ -60632,7 +60697,7 @@ msgstr "Polje Varijante" msgid "Variant Item" msgstr "Varijanta Artikla" -#: erpnext/stock/doctype/item/item.py:966 +#: erpnext/stock/doctype/item/item.py:971 msgid "Variant Items" msgstr "Varijanta Artikli" @@ -60643,9 +60708,13 @@ msgstr "Varijanta Artikli" msgid "Variant Of" msgstr "Varijanta od" -#: erpnext/stock/doctype/item/item.js:1260 +#: erpnext/stock/doctype/item/item.js:1281 msgid "Variant creation has been queued." -msgstr "Kreiranje varijante je stavljeno u red čekanja." +msgstr "Izrada varijante je stavljeno u red čekanja." + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:172 +msgid "Variant {0} and its template {1} cannot both be added to the same Pricing Rule" +msgstr "Varijanta {0} i njen predložak {1} ne mogu oboje biti dodani istom Pravilu Određivanja cjena." #. Label of the variants_section (Tab Break) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -60686,7 +60755,7 @@ msgstr "Vrijednost Vozila" #. Label of the vendor_invoice (Link) field in DocType 'Landed Cost Vendor #. Invoice' #: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:42 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:52 msgid "Vendor Invoice" msgstr "Faktura Dobavljača" @@ -60756,7 +60825,7 @@ msgstr "Prikaži Pokrivenost Računa" #: erpnext/stock/doctype/item/item_prices.html:123 msgid "View All Prices" -msgstr "Prikaži Sve Cijena" +msgstr "Prikaži Sve Cjena" #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:25 msgid "View BOM Update Log" @@ -60949,7 +61018,7 @@ msgstr "Verifikat #" #. Transaction Payments' #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json msgid "Voucher Created" -msgstr "Verifikat kreiran" +msgstr "Verifikat izrađen" #. Label of the voucher_detail_no (Data) field in DocType 'GL Entry' #. Label of the voucher_detail_no (Data) field in DocType 'Payment Ledger @@ -61013,7 +61082,7 @@ msgstr "Naziv Verifikata" #: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json #: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1197 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 @@ -61045,7 +61114,7 @@ msgstr "Naziv Verifikata" msgid "Voucher No" msgstr "Broj Verifikata" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1468 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1469 msgid "Voucher No is mandatory" msgstr "Broj Verifikata je obavezan" @@ -61087,7 +61156,7 @@ msgstr "Podtip Verifikata" #: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json #: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1197 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 #: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 @@ -61181,7 +61250,7 @@ msgstr "Radni nalozi u toku" #: erpnext/patches/v16_0/make_workstation_operating_components.py:50 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:317 msgid "Wages" -msgstr "Cijena Rada" +msgstr "Cjena Rada" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:435 msgid "Waiting for payment..." @@ -61300,7 +61369,7 @@ msgstr "Skladište je obavezno za preuzimanje artikala gotovih proizvoda" msgid "Warehouse not found against the account {0}" msgstr "Skladište nije pronađeno naspram računu {0}" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:896 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:902 #: erpnext/stock/doctype/delivery_note/delivery_note.py:401 msgid "Warehouse required for stock Item {0}" msgstr "Skladište je obavezno za artikal zaliha {0}" @@ -61314,7 +61383,7 @@ msgstr "Starost i Vrijednost stanja artikla u Skladištu" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Skladište {0} se ne može izbrisati jer postoji količina za artikal {1}" -#: erpnext/stock/doctype/item/item.py:1657 +#: erpnext/stock/doctype/item/item.py:1662 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Skladište {0} ne pripada {1}." @@ -61331,7 +61400,7 @@ msgstr "Skladište {0} ne postoji" msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}" msgstr "Skladište {0} nije dozvoljeno za Prodajni Nalog {1}, trebalo bi da bude {2}" -#: erpnext/stock/services/base_stock_gl_composer.py:147 +#: erpnext/stock/services/base_stock_gl_composer.py:154 msgid "Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}." msgstr "Skladište {0} nije povezano ni sa jednim računom, navedi račun u zapisu skladišta ili postavi standard račun zaliha u {1}." @@ -61341,7 +61410,7 @@ msgstr "Skladište: {0} ne pripada {1}" #. Label of the warehouses (Table MultiSelect) field in DocType 'Production #. Plan' -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:526 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:553 #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/stock/report/stock_balance/stock_balance.js:76 #: erpnext/stock/report/stock_ledger/stock_ledger.js:30 @@ -61432,19 +61501,19 @@ msgstr "Upozori pri novim Zahtjevima za Ponudu" #. in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Warn or stop if Item rate is changed in Delivery Notes and Sales Invoices generated from a Sales Order." -msgstr "Upozori ili zaustavi ako se cijena artikla promijeni u Otpremnicama i Prodajnim Fakturama stvorenih iz Prodajnog Naloga." +msgstr "Upozori ili zaustavi ako se cjena artikla promijeni u Otpremnicama i Prodajnim Fakturama stvorenih iz Prodajnog Naloga." #. Description of the 'Maintain same rate throughout the purchase cycle' #. (Check) field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Warn or stop if Item rate is changed in Purchase Invoice or Purchase Receipt generated from a Purchase Order." -msgstr "Upozori ili zaustavi ako se cijena artikla promijeni u fakturi ili potvrdi o kupovini stvorenoj iz naloga nabave." +msgstr "Upozori ili zaustavi ako se cjena artikla promijeni u fakturi ili potvrdi o nabavi stvorenoj iz naloga nabave." #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:134 msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Upozorenje - Red {0}: Sati naplate su više od stvarnih sati" -#: erpnext/stock/stock_ledger.py:918 +#: erpnext/stock/stock_ledger.py:966 msgid "Warning on Negative Stock" msgstr "Upozorenje na Negativnu Zalihu" @@ -61460,11 +61529,11 @@ msgstr "Upozorenje: Račun je promijenjen za skladište" msgid "Warning: Another {0} # {1} exists against stock entry {2}" msgstr "Upozorenje: Još jedan {0} # {1} postoji naspram unosa zaliha {2}" -#: erpnext/stock/doctype/material_request/material_request.js:534 +#: erpnext/stock/doctype/material_request/material_request.js:535 msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Upozorenje: Količina Materijalnog Naloga je manja od Minimalne Količine Nabavnog Naloga" -#: erpnext/manufacturing/doctype/work_order/work_order.py:914 +#: erpnext/manufacturing/doctype/work_order/work_order.py:920 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Upozorenje: Količina prelazi maksimalnu proizvodnu količinu na osnovu količine sirovina primljenih putem Podizvođačkog Naloga {0}." @@ -61564,7 +61633,7 @@ msgstr "Vidimo da je {0} napravljen protiv {1}. Ako želite da se ažuriraju nei #: banking/src/pages/BankStatementImporter.tsx:169 msgid "We support uploading CSV, XLSX, XLS and PDF files. Please make sure the file contains the correct columns." -msgstr "Podržavamo otpremanje CSV, XLSX, XLS i PDF datoteka. Molimo vas da provjerite da li datoteka sadrži ispravne kolone." +msgstr "Podržavamo otpremanje CSV, XLSX, XLS i PDF datoteka. Molimo vas da provjeri da li datoteka sadrži ispravne kolone." #: erpnext/www/support/index.html:7 msgid "We're here to help!" @@ -61754,17 +61823,17 @@ msgstr "Kada je odabrano, prag transakcije će se primjenjivati samo za pojedina #. in DocType 'Global Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "When checked, the system will use the posting datetime of the document for naming the document instead of the creation datetime of the document." -msgstr "Kada je označeno, sistem će za imenovanje dokumenta koristiti datum i vrijeme registracije dokumenta umjesto datuma i vremena kreiranja dokumenta." +msgstr "Kada je odabrano, sistem će za imenovanje dokumenta koristiti datum i vrijeme registracije dokumenta umjesto datuma i vremena izrade dokumenta." -#: erpnext/stock/doctype/item/item.js:1594 +#: erpnext/stock/doctype/item/item.js:1615 msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend." -msgstr "Kada kreirate artikal, unosom vrijednosti za ovo polje automatski će se kreirati Cijena Artikla u pozadini." +msgstr "Kada izradi artikal, unosom vrijednosti za ovo polje automatski će se izraditi Cjena Artikla u pozadini." #. Description of the 'Enable cut-off date on creating bulk Delivery Notes' #. (Check) field in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "When enabled, it adds a cutoff date filter to Delivery Notes created in bulk from Sales Orders. This allows you to process orders only with a transaction date up to the specified cutoff date, which is useful for period-end processing and batch fulfillment." -msgstr "Kada je omogućeno, dodaje filter krajnjeg datuma otpremnicama kreiranim masovno iz prodajnih naloga. Ovo vam omogućava da obrađujete samo naloge s datumom transakcije do navedenog krajnjeg datuma, što je korisno za obradu na kraju perioda i ispunjavanje šarži." +msgstr "Kada je omogućeno, dodaje filter krajnjeg datuma otpremnicama izrađenim masovno iz prodajnih naloga. Ovo vam omogućava da obrađujete samo naloge s datumom transakcije do navedenog krajnjeg datuma, što je korisno za obradu na kraju perioda i ispunjavanje šarži." #. Description of the 'Block Supplier' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json @@ -61773,15 +61842,15 @@ msgstr "Kada je omogućeno, transakcije s ovim dobavljačem bit će blokirane na #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:824 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." -msgstr "Kada postoji više gotovih proizvoda ({0}) u unosu zaliha za ponovno pakovanje, osnovna cijena za sve gotove proizvode mora se postaviti ručno. Da biste cijenu postavili ručno, označite polje za potvrdu 'Ručno postavi osnovnu cijenu' u odgovarajućem redu gotovih proizvoda." +msgstr "Kada postoji više gotovih proizvoda ({0}) u unosu zaliha za ponovno pakovanje, osnovna cjena za sve gotove proizvode mora se postaviti ručno. Da biste cjenu postavili ručno, odaberi polje za potvrdu 'Ručno postavi osnovnu cjenu' u odgovarajućem redu gotovih proizvoda." #: erpnext/accounts/doctype/account/account.py:384 msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account." -msgstr "Prilikom kreiranja računa za podređeno poduzeće {0}, nadređeni račun {1} pronađen je kao Knjigovodstveni Račun." +msgstr "Prilikom izrade računa za podređeno poduzeće {0}, nadređeni račun {1} pronađen je kao Knjigovodstveni Račun." #: erpnext/accounts/doctype/account/account.py:374 msgid "While creating account for Child Company {0}, parent account {1} not found. Please create the parent account in corresponding COA" -msgstr "Prilikom kreiranja naloga za podređeno poduzeće {0}, nadređeni račun {1} nije pronađen. Kreiraj nadređeni račun u odgovarajućem Kontnom Planu" +msgstr "Prilikom izrade naloga za podređeno poduzeće {0}, nadređeni račun {1} nije pronađen. Izradi nadređeni račun u odgovarajućem Kontnom Planu" #. Description of the 'Use Transaction Date Exchange Rate' (Check) field in #. DocType 'Buying Settings' @@ -61789,6 +61858,10 @@ msgstr "Prilikom kreiranja naloga za podređeno poduzeće {0}, nadređeni račun msgid "While making Purchase Invoice from Purchase Order, use Exchange Rate on Invoice's transaction date rather than inheriting it from Purchase Order. Only applies for Purchase Invoice." msgstr "Dok pravite Nabavnu Fakturu iz Nabavnog Naloga, koristi Devizni Kurs na datum transakcije Nabavne Fakture umjesto da ga preuzmete iz Nabavnog Naloga. Primjenjuje se samo na Nabavnu Fakturu." +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:286 +msgid "White" +msgstr "Bijelo" + #: erpnext/public/js/setup_wizard.js:31 msgid "Who are you setting this up for?" msgstr "Za koga ovo postavljaš?" @@ -61834,14 +61907,14 @@ msgstr "Bankovni Transfer" #. Label of the with_operations (Check) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "With Operations" -msgstr "Sa Operacijama" +msgstr "Sa Radnjima" #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:63 #: erpnext/accounts/report/trial_balance/trial_balance.js:83 msgid "With Period Closing Entry For Opening Balances" msgstr "Sa završnim unosom perioda za Početna Stanja" -#: erpnext/public/js/shop_floor/shop_floor.js:154 +#: erpnext/public/js/shop_floor/shop_floor.js:180 msgid "With job cards only" msgstr "Samo sa radnim karticama" @@ -61918,14 +61991,14 @@ msgstr "Rad Završen" #: erpnext/assets/doctype/asset/asset_list.js:12 #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json -#: erpnext/setup/doctype/company/company.py:453 +#: erpnext/setup/doctype/company/company.py:455 #: erpnext/support/doctype/warranty_claim/warranty_claim.json msgid "Work In Progress" msgstr "Radovi u Toku" #. Label of the work_instruction (Text Editor) field in DocType 'Operation' #: erpnext/manufacturing/doctype/operation/operation.json -#: erpnext/public/js/templates/shop_floor_template.html:829 +#: erpnext/public/js/templates/shop_floor_template.html:849 msgid "Work Instructions" msgstr "Radne Upute" @@ -61958,11 +62031,11 @@ msgstr "Radne Upute" #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/public/js/shop_floor/shop_floor.js:202 +#: erpnext/public/js/shop_floor/shop_floor.js:230 #: erpnext/selling/doctype/sales_order/sales_order.js:1094 -#: erpnext/stock/doctype/material_request/material_request.js:216 +#: erpnext/stock/doctype/material_request/material_request.js:219 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:612 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61974,7 +62047,7 @@ msgstr "Radne Upute" msgid "Work Order" msgstr "Radni Nalog" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:144 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:170 msgid "Work Order / Subcontract PO" msgstr "Radni Nalog / Podizvođački Nabavni Nalog" @@ -62008,7 +62081,7 @@ msgstr "Neusklađenost Radnog Naloga" #. Name of a DocType #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Work Order Operation" -msgstr "Operacija Radnog Naloga" +msgstr "Radnji Radnog Naloga" #. Label of the work_order_qty (Float) field in DocType 'Sales Order Item' #. Label of the work_order_qty (Float) field in DocType 'Subcontracting Inward @@ -62042,16 +62115,16 @@ msgstr "Sažetak Radnog Naloga" msgid "Work Order Summary Report" msgstr "Sažetka Izvještaja Radnog Naloga" -#: erpnext/stock/doctype/material_request/material_request.py:579 +#: erpnext/stock/doctype/material_request/material_request.py:618 msgid "Work Order cannot be created for the following reason:
{0}" -msgstr "Radni Nalog se ne može kreirati iz sljedećeg razloga:
{0}" +msgstr "Radni Nalog se ne može izraditi iz sljedećeg razloga:
{0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:858 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Work Order cannot be raised against an Item Template" -msgstr "Radni Nalog se nemože pokrenuti naspram Šablona Artikla" +msgstr "Radni Nalog se nemože pokrenuti naspram Predloška Artikla" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1130 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1177 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1136 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1183 msgid "Work Order has been {0}" msgstr "Radni Nalog je {0}" @@ -62061,7 +62134,7 @@ msgstr "Radni Nalog je obavezan" #: erpnext/selling/doctype/sales_order/sales_order.js:1297 msgid "Work Order not created" -msgstr "Radni Nalog nije kreiran" +msgstr "Radni Nalog nije izrađen" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1391 msgid "Work Order {0} created" @@ -62076,13 +62149,13 @@ msgid "Work Order {0} must be submitted" msgstr "Radni Nalog {0} mora biti podnešen" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:606 msgid "Work Orders" msgstr "Radni Nalozi" #: erpnext/selling/doctype/sales_order/sales_order.js:1390 msgid "Work Orders Created: {0}" -msgstr "Kreirani Radni Nalozi: {0}" +msgstr "Izrađeni Radni Nalozi: {0}" #. Name of a report #: erpnext/manufacturing/report/work_orders_in_progress/work_orders_in_progress.json @@ -62101,7 +62174,7 @@ msgstr "Radovi u Toku" msgid "Work-in-Progress Warehouse" msgstr "Skladište Posla u Toku" -#: erpnext/manufacturing/doctype/work_order/work_order.py:602 +#: erpnext/manufacturing/doctype/work_order/work_order.py:608 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Skladište u Toku je obavezno prije Podnošenja" @@ -62241,7 +62314,7 @@ msgstr "Radne Stanice" #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/setup/doctype/company/company.py:736 +#: erpnext/setup/doctype/company/company.py:738 msgid "Write Off" msgstr "Otpis" @@ -62352,7 +62425,7 @@ msgstr "Pogrešna Lozinka" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:55 msgid "Wrong Template" -msgstr "Pogrešan Šablon" +msgstr "Pogrešan Predložak" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:66 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:69 @@ -62408,11 +62481,15 @@ msgstr "Niste ovlašteni da vršite/uredite transakcije zaliha za artikal {0} u #: erpnext/accounts/doctype/account/account.py:316 msgid "You are not authorized to set Frozen value" -msgstr "Niste ovlašteni za postavljanje Zamrznute vrijednosti" +msgstr "Niste ovlašteni za postavljanje Zatvorene vrijednosti" + +#: erpnext/stock/doctype/company_restriction/company_restriction.py:93 +msgid "You are not permitted to add or remove Company {0} in Allowed Companies" +msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:544 msgid "You are picking more than required quantity for the item {0}. Check if there is any other pick list created for the sales order {1}." -msgstr "Birate više od potrebne količine za artikal {0}. Provjerite postoji li neka druga lista odabira kreirana za prodajni nalog {1}." +msgstr "Birate više od potrebne količine za artikal {0}. Provjeri postoji li neka druga lista odabira izrađena za prodajni nalog {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 msgid "You can add the original invoice {0} manually to proceed." @@ -62430,7 +62507,7 @@ msgstr "Takođe možete kopirati i zalijepiti ovu vezu u svoj pretraživač" msgid "You can also set default CWIP account in Company {0}" msgstr "Također možete postaviti standard Račun Kapitalnog Posla u Toku za {0}" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:767 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Možete promijeniti nadređeni račun u račun Bilansa Stanja ili odabrati drugi račun." @@ -62461,11 +62538,11 @@ msgstr "Možete iskoristiti do {0}." #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." -msgstr "Datume brisanja ovih unosa možete resetovati ovdje." +msgstr "Datume brisanja ovih unosa možete poništiti ovdje." #: erpnext/manufacturing/doctype/workstation/workstation.js:56 msgid "You can set it as a machine name or operation type. For example, stiching machine 12" -msgstr "Možete ga postaviti kao naziv mašine ili tip operacije. Na primjer, mašina za šivanje 12" +msgstr "Možete ga postaviti kao naziv mašine ili tip radnje. Na primjer, mašina za šivanje 12" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:742 msgid "You can set up the rule to split the transaction across multiple accounts." @@ -62479,13 +62556,13 @@ msgstr "Možete koristiti {0} za kasnije usklađivanje sa {1}." msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Ne možete iskoristiti bodove lojalnosti koji imaju vrijednost veću od ukupnog iznosa." -#: erpnext/manufacturing/doctype/bom/bom.js:776 +#: erpnext/manufacturing/doctype/bom/bom.js:780 msgid "You cannot change the rate if BOM is mentioned against any Item." -msgstr "Ne možete promijeniti cijenu ako je Sastavnica navedena naspram bilo kojeg artikla." +msgstr "Ne možete promijeniti cjenu ako je Sastavnica navedena naspram bilo kojeg artikla." #: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" -msgstr "Ne možete kreirati {0} unutar zatvorenog Knjigovodstvenog Perioda {1}" +msgstr "Ne možete izraditi {0} unutar zatvorenog Knjigovodstvenog Perioda {1}" #: erpnext/accounts/services/gl_validator.py:64 msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" @@ -62507,7 +62584,7 @@ msgstr "Ne možete izbrisati tip projekta 'Eksterni'" msgid "You cannot edit the root node." msgstr "Ne možete uređivati korijenski čvor." -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:205 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Ne možete omogućiti i '{0}' i '{1} postavke." @@ -62515,11 +62592,11 @@ msgstr "Ne možete omogućiti i '{0}' i '{1} postavke." msgid "You cannot make any changes to Job Card since Work Order is closed." msgstr "Ne možete napraviti nikakve promjene na Radnoj Kartici jer je Radni Nalog zatvoren." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:168 msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." msgstr "Ne možete poslati sljedeće {0} jer su ili Dostavljeni, Neaktivni ili se nalaze u drugom skladištu." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:230 msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "Ne možete obraditi serijski broj {0} jer je već korišten u Serijskom i Šaržnom Paketu {1}. {2} ako želite da primite isti serijski broj više puta, tada omogući 'Dozvoli da se postojeći Serijski Broj ponovo Proizvede/Primi' u {3}" @@ -62527,7 +62604,7 @@ msgstr "Ne možete obraditi serijski broj {0} jer je već korišten u Serijskom msgid "You cannot redeem more than {0}." msgstr "Ne možete iskoristiti više od {0}." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:220 msgid "You cannot repost item valuation before {0}" msgstr "Ne možete ponovo knjižiti procjenu vrijednosti artikla prije {0}" @@ -62543,7 +62620,7 @@ msgstr "Ne možete podnijeti prazan nalog." msgid "You cannot submit the order without payment." msgstr "Ne možete podnijeti nalog bez plaćanja." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:968 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:974 msgid "You cannot update stock for a Debit Note. A Debit Note is a financial document that should not affect inventory. Please disable 'Update Stock'." msgstr "Ne možete ažurirati zalihe za debitnu notu. Debitna nota je finansijski dokument koji ne bi trebao utjecati na zalihe. Molimo vas da onemogućite opciju 'Ažuriraj Zalihe'." @@ -62551,7 +62628,7 @@ msgstr "Ne možete ažurirati zalihe za debitnu notu. Debitna nota je finansijsk msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Ne možete {0} ovaj dokument jer postoji drugi Unos Zatvaranje Perioda {1} nakon {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:168 msgid "You do not have enough permission to access {0}: {1}" msgstr "Nemate dovoljno dozvola za pristup {0}: {1}" @@ -62576,11 +62653,11 @@ msgstr "Nemate dovoljno bodova lojalnosti da ih iskoristite" msgid "You don't have enough points to redeem." msgstr "Nemate dovoljno bodova da ih iskoristite." -#: erpnext/controllers/accounts_controller.py:1759 +#: erpnext/controllers/accounts_controller.py:1686 msgid "You don't have permission to create a Company Address. Please contact your System Manager." -msgstr "Nemate dozvolu za kreiranje adrese poduzeća. Kontaktiraj Odgovornog Sistema." +msgstr "Nemate dozvolu za izradu adrese poduzeća. Kontaktiraj Odgovornog Sistema." -#: erpnext/controllers/accounts_controller.py:1739 +#: erpnext/controllers/accounts_controller.py:1666 msgid "You don't have permission to update Company details. Please contact your System Manager." msgstr "Nemate dozvolu za ažuriranje podataka poduzeća . Kontaktiraj Odgovornog Sistema." @@ -62588,29 +62665,29 @@ msgstr "Nemate dozvolu za ažuriranje podataka poduzeća . Kontaktiraj Odgovorno msgid "You don't have permission to update Received Qty DocField for item {0}" msgstr "Nemate dozvolu za ažuriranje dokumenta Primljena Količina za artikal {0}" -#: erpnext/controllers/accounts_controller.py:1733 +#: erpnext/controllers/accounts_controller.py:1660 msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "Nemate dozvolu za ažuriranje ovog dokumenta.Kontaktiraj Odgovornog Sistema." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:313 msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "Imali ste {0} grešaka prilikom izrade početnih faktura. Pogledaj {1} za više detalja" -#: erpnext/public/js/utils.js:1055 +#: erpnext/public/js/utils.js:1067 msgid "You have already selected items from {0} {1}" msgstr "Već ste odabrali artikle iz {0} {1}" -#: erpnext/projects/doctype/project/project.py:420 +#: erpnext/projects/doctype/project/project.py:422 msgid "You have been invited to collaborate on the project {0}." msgstr "Pozvani ste da sarađujete na projektu {0}." #: erpnext/stock/doctype/stock_settings/stock_settings.py:263 msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted in the transaction price list." -msgstr "Omogućili ste {0} i {1} u {2}. Ovo može dovesti do umetanja cijena iz standardnog cjenovnika u cjenovnik transakcija." +msgstr "Omogućili ste {0} i {1} u {2}. Ovo može dovesti do umetanja cjena iz standardnog cjenovnika u cjenovnik transakcija." #: erpnext/selling/doctype/selling_settings/selling_settings.py:110 msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted into the transaction price list." -msgstr "Omogućili ste {0} i {1} u {2}. Ovo može dovesti do umetanja cijena iz standardnog cjenovnika u cjenovnik transakcija." +msgstr "Omogućili ste {0} i {1} u {2}. Ovo može dovesti do umetanja cjena iz standardnog cjenovnika u cjenovnik transakcija." #: erpnext/stock/doctype/shipment/shipment.js:442 msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." @@ -62624,13 +62701,13 @@ msgstr "Niste dodali nijedan bankovni račun poduzeća." msgid "You have not performed any reconciliations in this session yet." msgstr "Još niste izvršili nijedno usklađivanje u ovoj sesiji." -#: erpnext/stock/doctype/item/item.py:1215 +#: erpnext/stock/doctype/item/item.py:1220 msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Morate omogućiti automatsko ponovno naručivanje u Postavkama Zaliha kako biste održali nivoe ponovnog naručivanja." #: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" -msgstr "Imate nesačuvane promjene. Želite li sačuvati fakturu?" +msgstr "Imate nespremljene promjene. Želite li spremiti fakturu?" #: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." @@ -62692,7 +62769,7 @@ msgstr "Poštanski Broj" msgid "Zero Balance" msgstr "Nulto Stanje" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:379 msgid "Zero Balance Journal: {0}" msgstr "Žurnal Nultog Stanja: {0}" @@ -62718,15 +62795,15 @@ msgstr "Artikli Nulte Količine" msgid "Zip File" msgstr "Zip Datoteka" -#: erpnext/stock/reorder_item.py:366 +#: erpnext/stock/reorder_item.py:368 msgid "[Important] [ERPNext] Auto Reorder Errors" msgstr "[Važno] [ERPNext] Greške Automatskog Preuređenja" #: erpnext/controllers/status_updater.py:307 msgid "`Allow Negative rates for Items`" -msgstr "`Dozvoli negativne cijene za Artikle`" +msgstr "`Dozvoli negativne cjene za Artikle`" -#: erpnext/stock/stock_ledger.py:2153 +#: erpnext/stock/stock_ledger.py:2201 msgid "after" msgstr "poslije" @@ -62742,11 +62819,11 @@ msgstr "kao Opis" msgid "as Title" msgstr "kao Naslov" -#: erpnext/manufacturing/doctype/bom/bom.js:1026 +#: erpnext/manufacturing/doctype/bom/bom.js:1030 msgid "as a percentage of finished item quantity" -msgstr "kao procentualna količine gotovog proizvoda" +msgstr "kao postotna količine gotovog proizvoda" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1638 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1639 msgid "as of {0}" msgstr "od {0}" @@ -62763,7 +62840,7 @@ msgid "by {}" msgstr "od {}" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:846 msgid "dated {0}" msgstr "datirano {0}" @@ -62897,7 +62974,7 @@ msgstr "od 5 mogućih" msgid "paid to" msgstr "plaćeno" -#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:78 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {0} ili {1}" @@ -62914,7 +62991,7 @@ msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {0} ili {1}" msgid "per hour" msgstr "po satu" -#: erpnext/stock/stock_ledger.py:2154 +#: erpnext/stock/stock_ledger.py:2202 msgid "performing either one below:" msgstr "izvodi bilo koje dolje:" @@ -63009,7 +63086,7 @@ msgstr "naziv" msgid "to" msgstr "do" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1259 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1265 msgid "to unallocate the amount of this Return Invoice before cancelling it." msgstr "da poništite iznos ove povratne fakture prije nego što je poništite." @@ -63058,11 +63135,11 @@ msgstr "putem Alata Ažuriranje Sastavnice" msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' je onemogućen" -#: erpnext/accounts/utils.py:200 +#: erpnext/accounts/utils.py:201 msgid "{0} '{1}' not in Fiscal Year {2}" msgstr "{0} '{1}' nije u Fiskalnoj Godini {2}" -#: erpnext/manufacturing/doctype/work_order/services/status.py:209 +#: erpnext/manufacturing/doctype/work_order/services/status.py:218 msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) ne može biti veći od planirane količine ({2}) u Radnom Nalogu {3}" @@ -63070,7 +63147,7 @@ msgstr "{0} ({1}) ne može biti veći od planirane količine ({2}) u Radnom Nalo msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} je podnijeo Imovinu. Ukloni Artikal {2} iz tabele da nastavite." -#: erpnext/controllers/accounts_controller.py:1294 +#: erpnext/controllers/accounts_controller.py:1221 msgid "{0} Account not found against Customer {1}." msgstr "{0} Račun nije pronađen prema Klijentu {1}." @@ -63094,23 +63171,23 @@ msgstr "{0} Korišteni kupon je {1}. Dozvoljena količina je iskorištena" msgid "{0} Digest" msgstr "{0} Sažetak" -#: erpnext/accounts/utils.py:1590 +#: erpnext/accounts/utils.py:1585 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Broj {1} se već koristi u {2} {3}" #: erpnext/manufacturing/doctype/bom/services/operations_cost.py:134 msgid "{0} Operating Cost for operation {1}" -msgstr "Operativni trošak {0} za operaciju {1}" +msgstr "Operativni trošak {0} za radnju {1}" #: erpnext/manufacturing/doctype/work_order/work_order.js:581 msgid "{0} Operations: {1}" -msgstr "{0} Operacije: {1}" +msgstr "{0} Radnje: {1}" -#: erpnext/stock/doctype/material_request/material_request.py:232 +#: erpnext/stock/doctype/material_request/material_request.py:271 msgid "{0} Request for {1}" msgstr "{0} Zahtjev za {1}" -#: erpnext/stock/doctype/item/item.py:393 +#: erpnext/stock/doctype/item/item.py:398 msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item" msgstr "{0} Zadržani Uzorak se zasniva na Šarži, provjeri Ima Broj Šarže da zadržite uzorak artikla" @@ -63160,6 +63237,9 @@ msgstr "{0} već ima nadređenu proceduru {1}." #: erpnext/accounts/report/general_ledger/general_ledger.py:63 #: erpnext/accounts/report/pos_register/pos_register.py:120 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:28 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:35 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:42 msgid "{0} and {1} are mandatory" msgstr "{0} i {1} su obavezni" @@ -63167,11 +63247,11 @@ msgstr "{0} i {1} su obavezni" msgid "{0} asset cannot be transferred" msgstr "{0} imovina se ne može prenijeti" -#: erpnext/controllers/trends.py:66 +#: erpnext/controllers/trends.py:70 msgid "{0} can be either {1} or {2}." msgstr "{0} može biti {1} ili {2}." -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:279 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:297 msgid "{0} can not be negative" msgstr "{0} ne može biti negativan" @@ -63183,7 +63263,7 @@ msgstr "{0} se ne može otkazati jer su zarađeni bodovi lojalnosti iskorišteni msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} se ne može mijenjati s otvorenim Početnim Unosima." -#: erpnext/public/js/utils/sales_common.js:336 +#: erpnext/public/js/utils/sales_common.js:334 msgid "{0} cannot be greater than 100" msgstr "{0} ne može biti veće od 100" @@ -63195,26 +63275,26 @@ msgstr "{0} se ne može koristiti kao Matični Centar Troškova jer je korišten msgid "{0} cannot be zero" msgstr "{0} ne može biti nula" -#: erpnext/public/js/templates/shop_floor_template.html:992 +#: erpnext/public/js/templates/shop_floor_template.html:1012 msgid "{0} completed job cards" msgstr "{0} završenih radnih kartica" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:130 -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:137 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:214 #: erpnext/stock/doctype/pick_list/mapper.py:79 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:323 msgid "{0} created" -msgstr "{0} kreirano" +msgstr "{0} izrađeno" #: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." -msgstr "Kreiranje {0} za sljedeće zapise će biti preskočeno." +msgstr "Izrada {0} za sljedeće zapise će biti preskočeno." -#: erpnext/setup/doctype/company/company.py:364 +#: erpnext/setup/doctype/company/company.py:366 msgid "{0} currency must be same as company's default currency. Please select another account." msgstr "{0} valuta mora biti ista kao standard valuta poduzeća. Odaberi drugi račun." -#: erpnext/buying/doctype/purchase_order/purchase_order.py:286 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:287 msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution." msgstr "{0} trenutno ima {1} Dobavljačko Bodovno stanje, i Nabavne Naloge ovom dobavljaču treba izdavati s oprezom." @@ -63230,7 +63310,15 @@ msgstr "{0} ne pripada {1}" msgid "{0} does not belong to the Company {1}." msgstr "{0} ne pripada {1}." -#: erpnext/public/js/templates/shop_floor_template.html:860 +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:100 +msgid "{0} doesn't belong to Company {1}. Please select a Cost Center that belongs to Company {1}." +msgstr "" + +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:57 +msgid "{0} doesn't belong to Company {1}. Please select an Income Account that belongs to Company {1}." +msgstr "" + +#: erpnext/public/js/templates/shop_floor_template.html:880 msgid "{0} draft job cards awaiting submission" msgstr "{0} nacrta radnih kartica koje čekaju na podnošenje" @@ -63239,11 +63327,11 @@ msgid "{0} entered twice in Item Tax" msgstr "{0} uneseno dvaput u PDV Artikla" #: erpnext/setup/doctype/item_group/item_group.py:47 -#: erpnext/stock/doctype/item/item.py:524 +#: erpnext/stock/doctype/item/item.py:529 msgid "{0} entered twice {1} in Item Taxes" msgstr "{0} uneseno dvaput {1} u PDV Artikla" -#: erpnext/accounts/utils.py:137 +#: erpnext/accounts/utils.py:138 #: erpnext/projects/doctype/activity_cost/activity_cost.py:40 msgid "{0} for {1}" msgstr "{0} za {1}" @@ -63252,7 +63340,7 @@ msgstr "{0} za {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} ima omogućenu dodjelu na osnovu uslova plaćanja. Odaberi rok plaćanja za red #{1} u sekciji Reference plaćanja" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:852 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "Datoteka {0} je izmijenjena nakon što ste je povukli. Molimo vas da je ponovo povučete." @@ -63280,9 +63368,17 @@ msgstr "{0} je podređeno poduzeće." msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} je podređena tabela i biće automatski izbrisana zajedno sa svojom nadređenom tabelom" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:114 +msgid "{0} is a group Cost Center. Please select a non-group Cost Center." +msgstr "" + +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:78 +msgid "{0} is a group account. Please select a non-group Income Account." +msgstr "" + #: erpnext/accounts/doctype/pos_profile/pos_profile.py:95 msgid "{0} is a mandatory Accounting Dimension.
Please set a value for {0} in Accounting Dimensions section." -msgstr "{0} je obavezna knjigovodstvena dimenzija.
Postavite vrijednost za {0} u sekciji Knjigovodstvene Dimenzije." +msgstr "{0} je obavezna knjigovodstvena dimenzija.
Postavi vrijednost za {0} u sekciji Knjigovodstvene Dimenzije." #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:102 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:155 @@ -63290,7 +63386,7 @@ msgstr "{0} je obavezna knjigovodstvena dimenzija.
Postavite vrijednost za { msgid "{0} is added multiple times on rows: {1}" msgstr "{0} je dodata više puta u redove: {1}" -#: erpnext/public/js/shop_floor/shop_floor.js:1481 +#: erpnext/public/js/shop_floor/shop_floor.js:1516 msgid "{0} is already in progress. Pause it or complete the session." msgstr "{0} je već u toku. Pauziraj ili završi sesiju." @@ -63302,11 +63398,19 @@ msgstr "{0} već radi za {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:64 +msgid "{0} is disabled. Please select a valid Income Account." +msgstr "" + +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:107 +msgid "{0} is disabled. Please select an enabled Cost Center." +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:514 msgid "{0} is in Draft. Submit it before creating the Asset." -msgstr "{0} je u Nacrtu. Podnesi prije kreiranja Imovine." +msgstr "{0} je u Nacrtu. Podnesi prije izrade Imovine." -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:865 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:871 msgid "{0} is mandatory for Item {1}" msgstr "{0} je obavezan za artikal {1}" @@ -63317,23 +63421,23 @@ msgstr "{0} je obavezan za račun {1}" #: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" -msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}" +msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije izrađen za {1} do {2}" #: erpnext/accounts/services/taxes.py:233 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." -msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}." +msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije izrađen za {1} do {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1884 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1885 msgid "{0} is not a CSV file." msgstr "{0} nije CSV datoteka." -#: erpnext/selling/doctype/customer/customer.py:239 +#: erpnext/selling/doctype/customer/customer.py:251 msgid "{0} is not a company bank account" msgstr "{0} nije bankovni račun poduzeća" #: erpnext/accounts/doctype/cost_center/cost_center.py:53 msgid "{0} is not a group node. Please select a group node as parent cost center" -msgstr "{0} nije grupni član. Odaberite član grupe kao nadređeni centar troškova" +msgstr "{0} nije grupni član. Odaberi član grupe kao nadređeni centar troškova" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:110 msgid "{0} is not a stock Item" @@ -63347,7 +63451,7 @@ msgstr "{0} nije artikal na zalihi." msgid "{0} is not a valid Accounting Dimension." msgstr "{0} nije važeća Knjigovodstvena Dimenzija." -#: erpnext/controllers/item_variant.py:198 +#: erpnext/controllers/item_variant.py:260 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} nije važeća vrijednost za Atribut {1} Artikla {2}." @@ -63355,10 +63459,14 @@ msgstr "{0} nije važeća vrijednost za Atribut {1} Artikla {2}." msgid "{0} is not a valid {1} fieldname." msgstr "{0} nije važeći naziv polja {1}." -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:168 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:186 msgid "{0} is not added in the table" msgstr "{0} nije dodan u tabelu" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:71 +msgid "{0} is not an Income Account. Please select a valid Income Account." +msgstr "" + #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:146 msgid "{0} is not enabled in {1}" msgstr "{0} nije omogućen u {1}" @@ -63367,17 +63475,21 @@ msgstr "{0} nije omogućen u {1}" msgid "{0} is not running. Cannot trigger events for this document" msgstr "{0} se ne izvršava. Nije moguće pokrenuti događaje za ovaj dokument" -#: erpnext/stock/doctype/material_request/material_request.py:478 +#: erpnext/stock/doctype/material_request/material_request.py:517 msgid "{0} is not the default supplier for any items." msgstr "{0} nije standard dobavljač za bilo koji artikal." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2689 msgid "{0} is on hold until {1}" msgstr "{0} je na čekanju do {1}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." -msgstr "{0} je otvoren. Zatvor Kasu ili otkaži postojeći Unos Otvaranja Kase da biste kreirali novi Unos Otvaranja Kase." +msgstr "{0} je otvoren. Zatvor Kasu ili otkaži postojeći Unos Otvaranja Kase da biste izradili novi Unos Otvaranja Kase." + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:179 +msgid "{0} is required to get raw materials when {1} is set." +msgstr "{0} je obavezno za preuzimanje sirovina kada je {1} postavljeno." #: erpnext/manufacturing/doctype/work_order/work_order.js:546 msgid "{0} items disassembled" @@ -63403,10 +63515,18 @@ msgstr "{0} vraćenih artikala" msgid "{0} items to return" msgstr "{0} artikala za povrat" -#: erpnext/public/js/templates/shop_floor_template.html:901 +#: erpnext/public/js/templates/shop_floor_template.html:921 msgid "{0} job cards awaiting Manufacture entry" msgstr "{0} radnih kartica koje čekaju na Unos Proizvodnje" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:144 +msgid "{0} languages are marked as default languages. Please select only one of them." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:160 +msgid "{0} must be a group warehouse." +msgstr "{0} mora biti grupno skladište." + #: erpnext/controllers/sales_and_purchase_return.py:219 msgid "{0} must be negative in return document" msgstr "{0} mora biti negativan u povratnom dokumentu" @@ -63419,7 +63539,7 @@ msgstr "{0} nije dozvoljeno obavljati transakcije sa {1}. Promijeni poduzeće il msgid "{0} not found for item {1}" msgstr "{0} nije pronađeno za artikal {1}" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:706 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:709 msgid "{0} parameter is invalid" msgstr "{0} parametar je nevažeći" @@ -63427,7 +63547,7 @@ msgstr "{0} parametar je nevažeći" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} unose plaćanja ne može filtrirati {1}" -#: erpnext/public/js/templates/shop_floor_template.html:942 +#: erpnext/public/js/templates/shop_floor_template.html:962 msgid "{0} pending job cards" msgstr "{0} radnih kartice na čekanju" @@ -63439,7 +63559,7 @@ msgstr "{0} količina artikla {1} se prima u Skladište {2} kapaciteta {3}." msgid "{0} skipped (see Error Log)" msgstr "{0} preskočeno (pogledaj Zapisnik Grešaka)" -#: erpnext/public/js/templates/shop_floor_template.html:1030 +#: erpnext/public/js/templates/shop_floor_template.html:1050 msgid "{0} submitted today" msgstr "{0} podnešeno danas" @@ -63456,11 +63576,11 @@ msgstr "{0} transakcija će biti uvezeno u sistem. Molimo Vas da pregledate deta msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} jedinica je rezervisano za artikal {1} u Skladištu {2}, poništi rezervaciju iste za {3} Popis Zaliha." -#: erpnext/stock/doctype/pick_list/pick_list.py:1115 +#: erpnext/stock/doctype/pick_list/pick_list.py:1136 msgid "{0} units of Item {1} is not available in any of the warehouses." msgstr "{0} jedinica artikla {1} nije dostupan ni u jednom od skladišta." -#: erpnext/stock/doctype/pick_list/pick_list.py:1108 +#: erpnext/stock/doctype/pick_list/pick_list.py:1129 msgid "{0} units of Item {1} is not available in any of the warehouses. Other Pick Lists exist for this item." msgstr "{0} jedinica artikla {1} nije dostupno ni u jednom skladištu. Za ovaj artikal postoje druge liste odabira." @@ -63468,16 +63588,16 @@ msgstr "{0} jedinica artikla {1} nije dostupno ni u jednom skladištu. Za ovaj a msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} jedinica od {1} su potrebne u {2} sa dimenzijom inventara: {3} na {4} {5} za {6} da bi se transakcija završila." -#: erpnext/stock/stock_ledger.py:1800 erpnext/stock/stock_ledger.py:2325 -#: erpnext/stock/stock_ledger.py:2339 +#: erpnext/stock/stock_ledger.py:1848 erpnext/stock/stock_ledger.py:2373 +#: erpnext/stock/stock_ledger.py:2387 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} jedinica {1} potrebnih u {2} na {3} {4} za {5} da se završi ova transakcija." -#: erpnext/stock/stock_ledger.py:2429 erpnext/stock/stock_ledger.py:2474 +#: erpnext/stock/stock_ledger.py:2477 erpnext/stock/stock_ledger.py:2522 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} jedinica {1} potrebnih u {2} na {3} {4} za završetak ove transakcije." -#: erpnext/stock/stock_ledger.py:1794 +#: erpnext/stock/stock_ledger.py:1842 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} jedinica od {1} potrebnih u {2} za završetak ove transakcije." @@ -63489,19 +63609,19 @@ msgstr "{0} do {1}" msgid "{0} valid serial nos for Item {1}" msgstr "{0} važeći serijski brojevi za artikal {1}" -#: erpnext/stock/doctype/item/item.js:1265 +#: erpnext/stock/doctype/item/item.js:1286 msgid "{0} variants created." -msgstr "{0} varijante kreirane." +msgstr "{0} varijante izrađene." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 -msgid "{0} view is currently unsupported in Custom Financial Report." -msgstr "Prikaz {0} trenutno nije podržan u Prilagođenom Finansijskom Izvještaju." +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:270 +msgid "{0} view is currently unsupported in Custom Financial Report" +msgstr "Prikaz {0} trenutno nije podržan u Prilagođenom Finansijskom Izvještaju" #: erpnext/accounts/doctype/payment_term/payment_term.js:19 msgid "{0} will be given as discount." msgstr "{0} će biti dato kao popust." -#: erpnext/public/js/utils/barcode_scanner.js:523 +#: erpnext/public/js/utils/barcode_scanner.js:532 msgid "{0} will be set as the {1} in subsequently scanned items" msgstr "{0} će biti postavljeno kao {1} u naredno skeniranim artiklima" @@ -63519,11 +63639,11 @@ msgstr "{0} {1} Djelimično Usaglašeno" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:559 msgid "{0} {1} cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." -msgstr "{0} {1} se ne može ažurirati. Ako trebate napraviti promjene, preporučujemo da poništite postojeći unos i kreirate novi." +msgstr "{0} {1} se ne može ažurirati. Ako trebate napraviti promjene, preporučujemo da poništite postojeći unos i izradi novi." #: erpnext/accounts/doctype/payment_order/payment_order.py:130 msgid "{0} {1} created" -msgstr "{0} {1} kreiran" +msgstr "{0} {1} izrađen" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:630 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:683 @@ -63531,7 +63651,7 @@ msgstr "{0} {1} kreiran" msgid "{0} {1} does not exist" msgstr "{0} {1} ne postoji" -#: erpnext/accounts/party.py:577 +#: erpnext/accounts/party.py:593 msgid "{0} {1} has accounting entries in currency {2} for company {3}. Please select a receivable or payable account with currency {2}." msgstr "{0} {1} ima knjigovodstvene unose u valuti {2} za {3}. Odaberi račun potraživanja ili plaćanja sa valutom {2}." @@ -63545,11 +63665,11 @@ msgstr "{0} {1} je već djelimično plaćena. Koristi dugme 'Preuzmi Nepodmirene #: erpnext/buying/doctype/purchase_order/services/status.py:35 #: erpnext/selling/doctype/sales_order/services/status.py:45 -#: erpnext/stock/doctype/material_request/material_request.py:258 +#: erpnext/stock/doctype/material_request/material_request.py:297 msgid "{0} {1} has been modified. Please refresh." -msgstr "{0} {1} je izmijenjeno. Osvježite." +msgstr "{0} {1} je izmijenjeno. Osvježi." -#: erpnext/stock/doctype/material_request/material_request.py:285 +#: erpnext/stock/doctype/material_request/material_request.py:324 msgid "{0} {1} has not been submitted so the action cannot be completed" msgstr "{0} {1} nije podnešen tako da se radnja ne može završiti" @@ -63579,11 +63699,11 @@ msgstr "{0} {1} je povezan sa {2}, ali Račun Stranke je {3}" msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} je otkazan ili zatvoren" -#: erpnext/stock/doctype/material_request/material_request.py:437 +#: erpnext/stock/doctype/material_request/material_request.py:476 msgid "{0} {1} is cancelled or stopped" msgstr "{0} {1} je otkazan ili zaustavljen" -#: erpnext/stock/doctype/material_request/material_request.py:275 +#: erpnext/stock/doctype/material_request/material_request.py:314 msgid "{0} {1} is cancelled so the action cannot be completed" msgstr "{0} {1} je otkazan tako da se radnja ne može dovršiti" @@ -63591,19 +63711,19 @@ msgstr "{0} {1} je otkazan tako da se radnja ne može dovršiti" msgid "{0} {1} is closed" msgstr "{0} {1} je zatvoren" -#: erpnext/accounts/party.py:824 +#: erpnext/accounts/party.py:840 msgid "{0} {1} is disabled" msgstr "{0} {1} je onemogućen" -#: erpnext/accounts/party.py:830 +#: erpnext/accounts/party.py:846 msgid "{0} {1} is frozen" -msgstr "{0} {1} je zamrznut" +msgstr "{0} {1} je zatvoren" #: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:153 msgid "{0} {1} is fully billed" msgstr "{0} {1} je u potpunosti fakturisano" -#: erpnext/accounts/party.py:834 +#: erpnext/accounts/party.py:850 msgid "{0} {1} is not active" msgstr "{0} {1} nije aktivan" @@ -63615,7 +63735,7 @@ msgstr "{0} {1} ne utiče na bankovni račun {2}" msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} nije povezano sa {2} {3}" -#: erpnext/accounts/utils.py:133 +#: erpnext/accounts/utils.py:134 msgid "{0} {1} is not in any active Fiscal Year" msgstr "{0} {1} nije ni u jednoj aktivnoj Fiskalnoj Godini" @@ -63667,7 +63787,7 @@ msgstr "{0} {1}: Račun {2} je neaktivan" msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}" msgstr "{0} {1}: Knjigovodstveni Unos za {2} može se izvršiti samo u valuti: {3}" -#: erpnext/stock/services/base_stock_gl_composer.py:226 +#: erpnext/stock/services/base_stock_gl_composer.py:282 msgid "{0} {1}: Cost Center is mandatory for Item {2}" msgstr "{0} {1}: Centar Troškova je obavezan za Artikal {2}" @@ -63699,11 +63819,11 @@ msgstr "{0} {1}: Dobavljač je obavezan naspram Računa Troška {2}" msgid "{0}%" msgstr "{0}%" -#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/controllers/website_list_for_contact.py:212 msgid "{0}% Billed" msgstr "{0}% Fakturisano" -#: erpnext/controllers/website_list_for_contact.py:218 +#: erpnext/controllers/website_list_for_contact.py:220 msgid "{0}% Delivered" msgstr "{0}% Dostavljeno" @@ -63736,23 +63856,23 @@ msgstr "{0}: Zaštićeni DocType" msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtualni DocType (bez tabele baze podataka)" -#: erpnext/stock/doctype/item/item.js:1181 +#: erpnext/stock/doctype/item/item.js:1202 msgid "{0}: remove invalid value(s) {1}" msgstr "{0}: ukloni nevažeću vrijednost(i) {1}" -#: erpnext/stock/doctype/item/item.js:1188 +#: erpnext/stock/doctype/item/item.js:1209 msgid "{0}: select the typed value {1} from the list or clear it" -msgstr "{0}: odaberite unesenu vrijednost {1} s liste ili je obrišite" +msgstr "{0}: odaberi unesenu vrijednost {1} s liste ili je obrišite" -#: erpnext/controllers/accounts_controller.py:487 +#: erpnext/controllers/accounts_controller.py:493 msgid "{0}: {1} does not belong to the Company: {2}" msgstr "{0}: {1} ne pripada: {2}" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1354 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1356 msgid "{0}: {1} does not exist" msgstr "{0}: {1} ne postoji" -#: erpnext/setup/doctype/company/company.py:351 +#: erpnext/setup/doctype/company/company.py:353 msgid "{0}: {1} is a group account." msgstr "{0}: {1} je grupni račun." @@ -63760,15 +63880,15 @@ msgstr "{0}: {1} je grupni račun." msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} mora biti manje od {2}" -#: erpnext/controllers/buying_controller.py:1028 +#: erpnext/controllers/buying_controller.py:1036 msgid "{count} Assets created for {item_code}" -msgstr "{count} Imovina kreirana za {item_code}" +msgstr "{count} Imovina izrađena za {item_code}" -#: erpnext/controllers/buying_controller.py:928 +#: erpnext/controllers/buying_controller.py:936 msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} je otkazan ili zatvoren." -#: erpnext/controllers/stock_controller.py:666 +#: erpnext/controllers/stock_controller.py:668 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name} Veličina Uzorka ({sample_size}) ne može biti veća od Prihvaćene Količina ({accepted_quantity})" diff --git a/erpnext/locale/cs.po b/erpnext/locale/cs.po index 7cd4955ae07..f4d5bb89dc7 100644 --- a/erpnext/locale/cs.po +++ b/erpnext/locale/cs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-07-05 10:19+0000\n" -"PO-Revision-Date: 2026-07-05 21:31\n" +"POT-Creation-Date: 2026-07-19 10:04+0000\n" +"PO-Revision-Date: 2026-07-19 13:55\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -86,15 +86,15 @@ msgstr "" msgid " Summary" msgstr "" -#: erpnext/stock/doctype/item/item.py:281 +#: erpnext/stock/doctype/item/item.py:286 msgid "\"Customer Provided Item\" cannot be Purchase Item also" msgstr "" -#: erpnext/stock/doctype/item/item.py:283 +#: erpnext/stock/doctype/item/item.py:288 msgid "\"Customer Provided Item\" cannot have Valuation Rate" msgstr "" -#: erpnext/stock/doctype/item/item.py:385 +#: erpnext/stock/doctype/item/item.py:390 msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item" msgstr "" @@ -154,7 +154,7 @@ msgstr "" msgid "% Delivered" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:1022 +#: erpnext/manufacturing/doctype/bom/bom.js:1026 #, python-format msgid "% Finished Item Quantity" msgstr "% Množství hotové položky" @@ -259,7 +259,7 @@ msgstr "" msgid "% of materials delivered against this Sales Order" msgstr "" -#: erpnext/controllers/accounts_controller.py:1298 +#: erpnext/controllers/accounts_controller.py:1225 msgid "'Account' in the Accounting section of Customer {0}" msgstr "" @@ -267,7 +267,7 @@ msgstr "" msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" -#: erpnext/controllers/trends.py:62 +#: erpnext/controllers/trends.py:66 msgid "'Based On' and 'Group By' can not be the same" msgstr "" @@ -275,7 +275,7 @@ msgstr "" msgid "'Days Since Last Order' must be greater than or equal to zero" msgstr "" -#: erpnext/controllers/accounts_controller.py:1303 +#: erpnext/controllers/accounts_controller.py:1230 msgid "'Default {0} Account' in Company {1}" msgstr "" @@ -284,7 +284,7 @@ msgid "'Entries' cannot be empty" msgstr "" #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:24 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:127 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:132 #: erpnext/stock/report/stock_analytics/stock_analytics.py:322 msgid "'From Date' is required" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "'From Date' must be after 'To Date'" msgstr "" -#: erpnext/stock/doctype/item/item.py:468 +#: erpnext/stock/doctype/item/item.py:473 msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" @@ -312,7 +312,7 @@ msgid "'Opening'" msgstr "" #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:27 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:129 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:134 #: erpnext/stock/report/stock_analytics/stock_analytics.py:328 msgid "'To Date' is required" msgstr "" @@ -337,8 +337,8 @@ msgstr "Účet {0} již používá {1}. Použijte jiný účet." msgid "'{0}' has been already added." msgstr "" -#: erpnext/setup/doctype/company/company.py:376 -#: erpnext/setup/doctype/company/company.py:387 +#: erpnext/setup/doctype/company/company.py:378 +#: erpnext/setup/doctype/company/company.py:389 msgid "'{0}' should be in company currency {1}." msgstr "" @@ -477,11 +477,11 @@ msgstr "" msgid "1 Loyalty Points = How much base currency?" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:992 +#: erpnext/public/js/templates/shop_floor_template.html:1012 msgid "1 completed job card" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:860 +#: erpnext/public/js/templates/shop_floor_template.html:880 msgid "1 draft job card awaiting submission" msgstr "" @@ -494,15 +494,15 @@ msgstr "" msgid "1 invoice" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:901 +#: erpnext/public/js/templates/shop_floor_template.html:921 msgid "1 job card awaiting Manufacture entry" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:942 +#: erpnext/public/js/templates/shop_floor_template.html:962 msgid "1 pending job card" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:1030 +#: erpnext/public/js/templates/shop_floor_template.html:1050 msgid "1 submitted today" msgstr "" @@ -623,8 +623,8 @@ msgstr "" msgid "90 Above" msgstr "90 a více" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1293 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1294 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1295 msgid "<0" msgstr "<0" @@ -840,7 +840,7 @@ msgstr "" msgid "Posting Date {0} cannot be before Purchase Order date for the following:
" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:134 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:116 msgid "
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?" msgstr "" @@ -868,6 +868,11 @@ msgid "\n" msgstr "" +#. Header text in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounting Overview" +msgstr "" + #. Header text in the Stock Workspace #: erpnext/stock/workspace/stock/stock.json msgid "Masters & Reports" @@ -896,11 +901,6 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#. Header text in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Inward and Outward" -msgstr "" - #. Header text in the ERPNext Settings Workspace #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json msgid "Your Shortcuts\n" @@ -921,11 +921,11 @@ msgstr "" msgid "Your Shortcuts" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1300 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 msgid "Grand Total: {0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1302 msgid "Outstanding Amount: {0}" msgstr "" @@ -970,7 +970,7 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:358 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" @@ -1000,7 +1000,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:603 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1041,7 +1041,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1519 +#: erpnext/stock/serial_batch_bundle.py:1525 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1151,19 +1151,19 @@ msgstr "" msgid "Abbreviation" msgstr "" -#: erpnext/setup/doctype/company/company.py:310 +#: erpnext/setup/doctype/company/company.py:312 msgid "Abbreviation already used for another company" msgstr "" -#: erpnext/setup/doctype/company/company.py:307 +#: erpnext/setup/doctype/company/company.py:309 msgid "Abbreviation is mandatory" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:112 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:114 msgid "Abbreviation: {0} must appear only once" msgstr "Zkratka: {0} se smí vyskytovat pouze jednou" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1291 msgid "Above" msgstr "" @@ -1185,7 +1185,7 @@ msgstr "" msgid "Accept the rule for the selected transaction" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:934 +#: erpnext/public/js/shop_floor/shop_floor.js:970 msgid "Acceptable range: {0} to {1}" msgstr "" @@ -1277,11 +1277,9 @@ msgstr "" #. Label of the account_category (Link) field in DocType 'Account' #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/account_tree.js:162 #: erpnext/accounts/doctype/account_category/account_category.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Account Category" msgstr "" @@ -1347,10 +1345,10 @@ msgstr "" msgid "Account Data" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 -#: erpnext/accounts/report/cash_flow/cash_flow.js:29 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:27 +#: erpnext/accounts/report/cash_flow/cash_flow.js:36 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:27 msgid "Account Detail Level" msgstr "" @@ -1384,8 +1382,8 @@ msgstr "" msgid "Account Manager" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 -#: erpnext/controllers/accounts_controller.py:1307 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:760 +#: erpnext/controllers/accounts_controller.py:1234 msgid "Account Missing" msgstr "" @@ -1398,7 +1396,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:399 -#: erpnext/accounts/report/financial_statements.py:705 +#: erpnext/accounts/report/financial_statements.py:891 #: erpnext/accounts/report/trial_balance/trial_balance.py:498 msgid "Account Name" msgstr "" @@ -1411,7 +1409,7 @@ msgstr "" #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/account_tree.js:128 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:406 -#: erpnext/accounts/report/financial_statements.py:712 +#: erpnext/accounts/report/financial_statements.py:898 #: erpnext/accounts/report/trial_balance/trial_balance.py:505 msgid "Account Number" msgstr "" @@ -1524,6 +1522,12 @@ msgstr "" msgid "Account to record additional purchase expenses like freight or customs" msgstr "" +#. Description of the 'Expenses Added To Stock Account' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account to track value added to stock via Stock Entry, Stock Reconciliation or Landed Cost Voucher" +msgstr "" + #. Description of the 'COGS Account' (Link) field in DocType 'Item Default' #: erpnext/stock/doctype/item_default/item_default.json msgid "Account where cost of goods sold will be posted when this item is sold" @@ -1576,7 +1580,7 @@ msgstr "" msgid "Account {0} does not belong to company {1}" msgstr "" -#: erpnext/setup/doctype/company/company.py:358 +#: erpnext/setup/doctype/company/company.py:360 msgid "Account {0} does not belong to company: {1}" msgstr "" @@ -1604,7 +1608,7 @@ msgstr "" msgid "Account {0} is added in the child company {1}" msgstr "" -#: erpnext/setup/doctype/company/company.py:347 +#: erpnext/setup/doctype/company/company.py:349 msgid "Account {0} is disabled." msgstr "" @@ -1644,7 +1648,7 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" @@ -1662,6 +1666,7 @@ msgstr "" #. Item' #. Label of the section_break_10 (Section Break) field in DocType 'Shipping #. Rule' +#. Name of a Workspace #. Label of the accounting_tab (Tab Break) field in DocType 'Supplier' #. Label of a Desktop Icon #. Label of the accounting_tab (Tab Break) field in DocType 'Customer' @@ -1673,6 +1678,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/desktop_icon/accounting.json erpnext/public/js/setup_wizard.js:91 #: erpnext/selling/doctype/customer/customer.json @@ -1731,15 +1737,12 @@ msgstr "" #. Label of a Link in the Invoicing Workspace #. Label of the accounting_dimensions_section (Section Break) field in DocType #. 'Asset Repair' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json #: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json #: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json #: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:32 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/workspace_sidebar/accounts_setup.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Accounting Dimension" msgstr "" @@ -1933,8 +1936,8 @@ msgstr "" msgid "Accounting Entry for Asset" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:298 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:316 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:303 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:321 msgid "Accounting Entry for LCV in Stock Entry {0}" msgstr "" @@ -1955,17 +1958,17 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:430 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:675 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:696 -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:430 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:234 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:249 -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:263 -#: erpnext/stock/services/base_stock_gl_composer.py:65 -#: erpnext/stock/services/base_stock_gl_composer.py:80 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:439 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:239 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:254 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:268 +#: erpnext/stock/services/base_stock_gl_composer.py:72 +#: erpnext/stock/services/base_stock_gl_composer.py:87 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:67 msgid "Accounting Entry for Stock" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:268 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:276 msgid "Accounting Entry for {0}" msgstr "" @@ -1974,12 +1977,12 @@ msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}" msgstr "" #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193 -#: erpnext/assets/doctype/asset/asset.js:190 -#: erpnext/assets/doctype/asset_repair/asset_repair.js:92 -#: erpnext/buying/doctype/supplier/supplier.js:123 +#: erpnext/assets/doctype/asset/asset.js:198 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:101 +#: erpnext/buying/doctype/supplier/supplier.js:132 #: erpnext/public/js/controllers/stock_controller.js:88 #: erpnext/public/js/utils/ledger_preview.js:8 -#: erpnext/selling/doctype/customer/customer.js:173 +#: erpnext/selling/doctype/customer/customer.js:182 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51 msgid "Accounting Ledger" msgstr "" @@ -1996,10 +1999,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounting_period/accounting_period.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounting Period" msgstr "" @@ -2039,7 +2040,7 @@ msgstr "" #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:513 +#: erpnext/setup/doctype/company/company.py:515 #: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/setup/doctype/incoterm/incoterm.json @@ -2079,13 +2080,18 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/report/accounts_payable/accounts_payable.json #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126 -#: erpnext/buying/doctype/supplier/supplier.js:135 +#: erpnext/buying/doctype/supplier/supplier.js:144 #: erpnext/workspace_sidebar/financial_reports.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Accounts Payable" msgstr "" +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounts Payable Ageing" +msgstr "" + #. Name of a report #: erpnext/accounts/report/accounts_payable/accounts_payable.js:191 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json @@ -2104,7 +2110,7 @@ msgstr "Souhrn závazků" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.json #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:149 -#: erpnext/selling/doctype/customer/customer.js:162 +#: erpnext/selling/doctype/customer/customer.js:171 #: erpnext/workspace_sidebar/financial_reports.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json @@ -2123,6 +2129,11 @@ msgstr "" msgid "Accounts Receivable / Payable remarks length" msgstr "" +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json +msgid "Accounts Receivable Ageing" +msgstr "" + #. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice #. Discounting' #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json @@ -2154,17 +2165,12 @@ msgstr "" #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Accounts Settings" msgstr "" -#. Name of a Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/accounts_setup/accounts_setup.json #: erpnext/desktop_icon/accounts_setup.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounts Setup" msgstr "" @@ -2202,7 +2208,7 @@ msgstr "" #. Label of the accumulated_depreciation_amount (Currency) field in DocType #. 'Depreciation Schedule' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:173 -#: erpnext/assets/doctype/asset/asset.js:385 +#: erpnext/assets/doctype/asset/asset.js:393 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Accumulated Depreciation Amount" msgstr "" @@ -2224,9 +2230,9 @@ msgstr "" msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:46 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:12 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:47 msgid "Accumulated Values" msgstr "" @@ -2350,7 +2356,7 @@ msgstr "" #. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType #. 'Stock Settings' -#: erpnext/stock/doctype/item/item.js:481 +#: erpnext/stock/doctype/item/item.js:496 #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Activate Serial / Batch No for Item" msgstr "" @@ -2364,11 +2370,6 @@ msgstr "" msgid "Active Status" msgstr "" -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Active Subcontracted Items" -msgstr "" - #. Label of the activities_tab (Tab Break) field in DocType 'Lead' #. Label of the activities_tab (Tab Break) field in DocType 'Opportunity' #. Label of the activities_tab (Tab Break) field in DocType 'Prospect' @@ -2474,7 +2475,7 @@ msgstr "" msgid "Actual End Date (via Timesheet)" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:322 +#: erpnext/manufacturing/doctype/work_order/work_order.py:328 msgid "Actual End Date cannot be before Actual Start Date" msgstr "" @@ -2484,7 +2485,7 @@ msgstr "" msgid "Actual End Time" msgstr "" -#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:464 msgid "Actual Expense" msgstr "Skutečný náklad" @@ -2545,7 +2546,7 @@ msgstr "Skutečné množství je povinné" msgid "Actual Qty {0} / Waiting Qty {1}" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:196 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:222 msgid "Actual Qty: Quantity available in the warehouse." msgstr "" @@ -2674,7 +2675,7 @@ msgstr "" msgid "Add Multiple Tasks" msgstr "" -#: erpnext/stock/doctype/item/item.js:981 +#: erpnext/stock/doctype/item/item.js:1002 msgid "Add Opening Stock" msgstr "" @@ -2699,7 +2700,7 @@ msgid "Add Quote" msgstr "" #. Label of the add_raw_materials (Button) field in DocType 'BOM Operation' -#: erpnext/manufacturing/doctype/bom/bom.js:1050 +#: erpnext/manufacturing/doctype/bom/bom.js:1054 #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Add Raw Materials" msgstr "" @@ -2860,11 +2861,11 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:135 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Added Supplier Role to User {0}." msgstr "" -#: erpnext/controllers/website_list_for_contact.py:311 +#: erpnext/controllers/website_list_for_contact.py:313 msgid "Added {1} role to user {0}." msgstr "" @@ -3103,7 +3104,7 @@ msgstr "Dodatečné informace" msgid "Additional Information updated successfully." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:839 +#: erpnext/manufacturing/doctype/work_order/work_order.js:843 msgid "Additional Material Transfer" msgstr "" @@ -3126,7 +3127,7 @@ msgstr "" msgid "Additional Transferred Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:592 +#: erpnext/manufacturing/doctype/work_order/work_order.py:598 msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" @@ -3279,7 +3280,7 @@ msgstr "" msgid "Adjustment Against" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:203 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:211 msgid "Adjustment based on Purchase Invoice rate" msgstr "" @@ -3356,7 +3357,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/controllers/accounts_controller.py:279 +#: erpnext/controllers/accounts_controller.py:283 #: erpnext/setup/doctype/company/company.json msgid "Advance Payments" msgstr "" @@ -3476,7 +3477,7 @@ msgstr "" msgid "Against Blanket Order" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:838 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:844 msgid "Against Customer Order {0}" msgstr "" @@ -3620,7 +3621,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:138 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1225 msgid "Age (Days)" msgstr "" @@ -3729,7 +3730,7 @@ msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 -#: erpnext/accounts/utils.py:1652 erpnext/public/js/setup_wizard.js:278 +#: erpnext/accounts/utils.py:1647 erpnext/public/js/setup_wizard.js:278 msgid "All Accounts" msgstr "" @@ -3781,21 +3782,21 @@ msgstr "" #: erpnext/patches/v11_0/update_department_lft_rgt.py:9 #: erpnext/patches/v11_0/update_department_lft_rgt.py:11 #: erpnext/patches/v11_0/update_department_lft_rgt.py:16 -#: erpnext/setup/doctype/company/company.py:506 -#: erpnext/setup/doctype/company/company.py:509 -#: erpnext/setup/doctype/company/company.py:514 -#: erpnext/setup/doctype/company/company.py:520 -#: erpnext/setup/doctype/company/company.py:526 -#: erpnext/setup/doctype/company/company.py:532 -#: erpnext/setup/doctype/company/company.py:538 -#: erpnext/setup/doctype/company/company.py:544 -#: erpnext/setup/doctype/company/company.py:550 -#: erpnext/setup/doctype/company/company.py:556 -#: erpnext/setup/doctype/company/company.py:562 -#: erpnext/setup/doctype/company/company.py:568 -#: erpnext/setup/doctype/company/company.py:574 -#: erpnext/setup/doctype/company/company.py:580 -#: erpnext/setup/doctype/company/company.py:586 +#: erpnext/setup/doctype/company/company.py:508 +#: erpnext/setup/doctype/company/company.py:511 +#: erpnext/setup/doctype/company/company.py:516 +#: erpnext/setup/doctype/company/company.py:522 +#: erpnext/setup/doctype/company/company.py:528 +#: erpnext/setup/doctype/company/company.py:534 +#: erpnext/setup/doctype/company/company.py:540 +#: erpnext/setup/doctype/company/company.py:546 +#: erpnext/setup/doctype/company/company.py:552 +#: erpnext/setup/doctype/company/company.py:558 +#: erpnext/setup/doctype/company/company.py:564 +#: erpnext/setup/doctype/company/company.py:570 +#: erpnext/setup/doctype/company/company.py:576 +#: erpnext/setup/doctype/company/company.py:582 +#: erpnext/setup/doctype/company/company.py:588 msgid "All Departments" msgstr "" @@ -3875,7 +3876,7 @@ msgstr "" msgid "All Territories" msgstr "" -#: erpnext/setup/doctype/company/company.py:451 +#: erpnext/setup/doctype/company/company.py:453 msgid "All Warehouses" msgstr "" @@ -3918,15 +3919,15 @@ msgstr "" msgid "All items in this document already have a linked Quality Inspection." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:915 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:921 msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:926 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:932 msgid "All linked Sales Orders must be subcontracted." msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:302 +#: erpnext/stock/doctype/pick_list/mapper.py:309 msgid "All picked items have already been transferred against this Pick List" msgstr "" @@ -3940,7 +3941,7 @@ msgstr "" msgid "All the items have already been returned." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1281 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1292 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" @@ -4014,7 +4015,7 @@ msgstr "" #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:409 +#: erpnext/accounts/report/gross_profit/gross_profit.py:411 #: erpnext/public/js/utils/unreconcile.js:87 msgid "Allocated Amount" msgstr "" @@ -4035,11 +4036,11 @@ msgstr "" msgid "Allocated amount" msgstr "" -#: erpnext/accounts/utils.py:665 +#: erpnext/accounts/utils.py:666 msgid "Allocated amount cannot be greater than unadjusted amount" msgstr "" -#: erpnext/accounts/utils.py:663 +#: erpnext/accounts/utils.py:664 msgid "Allocated amount cannot be negative" msgstr "" @@ -4200,7 +4201,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:210 +#: erpnext/controllers/item_variant.py:272 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4217,7 +4218,7 @@ msgstr "" msgid "Allow Resetting Service Level Agreement" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:788 msgid "Allow Resetting Service Level Agreement from Support Settings." msgstr "" @@ -4458,6 +4459,21 @@ msgstr "" msgid "Allow transferring raw materials even after the Required Quantity is fulfilled" msgstr "" +#. Label of the allowed_companies (Table MultiSelect) field in DocType +#. 'Supplier' +#. Label of the allowed_companies (Table MultiSelect) field in DocType +#. 'Customer' +#. Label of the allowed_companies (Table MultiSelect) field in DocType 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Allowed Companies" +msgstr "" + +#: erpnext/stock/doctype/company_restriction/company_restriction.py:74 +msgid "Allowed Companies is required when Restrict to Companies is checked" +msgstr "" + #. Name of a DocType #: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json msgid "Allowed Dimension" @@ -4487,6 +4503,14 @@ msgstr "" msgid "Allowed Users" msgstr "" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:59 +msgid "Allowed Users is not required as Frappe CRM is already installed on the site." +msgstr "" + +#: erpnext/crm/doctype/crm_settings/crm_settings.js:17 +msgid "Allowed Users is required for data synchronization from remote Frappe CRM site." +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" @@ -4530,7 +4554,7 @@ msgstr "" msgid "Already Imported" msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:1111 +#: erpnext/stock/doctype/pick_list/pick_list.py:1132 msgid "Already Picked" msgstr "" @@ -4538,7 +4562,7 @@ msgstr "" msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" -#: erpnext/stock/doctype/item/item.js:38 +#: erpnext/stock/doctype/item/item.js:40 msgid "Also you can't switch back to FIFO after setting the valuation method to Moving Average for this item." msgstr "" @@ -4549,8 +4573,8 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:604 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:344 +#: erpnext/public/js/utils.js:616 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:343 msgid "Alternate Item" msgstr "" @@ -4578,7 +4602,7 @@ msgstr "" msgid "Alternative item must not be same as item code" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:383 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 msgid "Alternatively, you can download the template and fill your data in." msgstr "" @@ -4969,8 +4993,8 @@ msgstr "" msgid "Ampere-Second" msgstr "" -#: erpnext/controllers/trends.py:291 erpnext/controllers/trends.py:303 -#: erpnext/controllers/trends.py:312 +#: erpnext/controllers/trends.py:301 erpnext/controllers/trends.py:313 +#: erpnext/controllers/trends.py:322 msgid "Amt" msgstr "" @@ -4985,16 +5009,16 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:766 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:495 +#: erpnext/public/js/utils/sales_common.js:493 msgid "An error occurred during the update process" msgstr "" -#: erpnext/stock/reorder_item.py:370 +#: erpnext/stock/reorder_item.py:372 msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :" msgstr "" @@ -5051,7 +5075,7 @@ msgstr "" msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1044 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1045 msgid "Another Payment Request is already processed" msgstr "" @@ -5259,8 +5283,8 @@ msgstr "" #. Label of the apply_discount_on_rate (Check) field in DocType 'Pricing Rule' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:190 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:199 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:208 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:217 msgid "Apply Discount on Discounted Rate" msgstr "" @@ -5358,6 +5382,12 @@ msgstr "" msgid "Apply to Document" msgstr "" +#. Description of the 'Additional Discount Amount' (Currency) field in DocType +#. 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Applying a Discount Amount? When this Sales Order is partially fulfilled through multiple Delivery Notes and Sales Invoices, the Discount Amount is allocated on a FIFO basis. The earlier transactions receive a larger share of the discount. To spread the discount proportionally across item prices, use Additional Discount Percentage instead." +msgstr "" + #. Name of a DocType #. Label of a Link in the CRM Workspace #. Label of a Workspace Sidebar Item @@ -5531,15 +5561,15 @@ msgstr "" msgid "As per Stock UOM" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:189 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:207 msgid "As the field {0} is enabled, the field {1} is mandatory." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:197 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:215 msgid "As the field {0} is enabled, the value of the field {1} should be more than 1." msgstr "" -#: erpnext/stock/doctype/item/item.py:1122 +#: erpnext/stock/doctype/item/item.py:1127 msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" @@ -5547,7 +5577,7 @@ msgstr "" msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Protože je k dispozici dostatek dílčích sestav, výrobní příkaz není pro sklad {0} vyžadován." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" @@ -5689,7 +5719,7 @@ msgstr "" msgid "Asset Category Name" msgstr "" -#: erpnext/stock/doctype/item/item.py:377 +#: erpnext/stock/doctype/item/item.py:382 msgid "Asset Category is mandatory for Fixed Asset item" msgstr "" @@ -5880,6 +5910,7 @@ msgstr "" #. Label of the asset_repair (Link) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item #: erpnext/assets/doctype/asset/asset.js:113 +#: erpnext/assets/doctype/asset/asset.js:152 #: erpnext/assets/doctype/asset_repair/asset_repair.json #: erpnext/assets/workspace/assets/assets.json #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json @@ -5930,8 +5961,7 @@ msgstr "" #. Label of the asset_value (Currency) field in DocType 'Asset Capitalization #. Asset Item' -#: erpnext/assets/dashboard_fixtures.py:180 -#: erpnext/assets/doctype/asset/asset.js:517 +#: erpnext/assets/doctype/asset/asset.js:525 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:208 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:457 @@ -5954,7 +5984,6 @@ msgid "Asset Value Adjustment cannot be posted before Asset's purchase date { msgstr "" #. Label of a chart in the Assets Workspace -#: erpnext/assets/dashboard_fixtures.py:56 #: erpnext/assets/workspace/assets/assets.json msgid "Asset Value Analytics" msgstr "" @@ -5991,7 +6020,7 @@ msgstr "" msgid "Asset issued to Employee {0}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:178 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:181 msgid "Asset out of order due to Asset Repair {0}" msgstr "" @@ -6036,7 +6065,7 @@ msgstr "" msgid "Asset updated after being split into Asset {0}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:335 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:338 msgid "Asset updated due to Asset Repair {0} {1}." msgstr "" @@ -6085,7 +6114,7 @@ msgstr "" msgid "Asset {0} must be submitted" msgstr "" -#: erpnext/controllers/buying_controller.py:1039 +#: erpnext/controllers/buying_controller.py:1047 msgid "Asset {assets_link} created for {item_code}" msgstr "" @@ -6110,7 +6139,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:271 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6123,11 +6152,11 @@ msgstr "" msgid "Assets Setup" msgstr "" -#: erpnext/controllers/buying_controller.py:1057 +#: erpnext/controllers/buying_controller.py:1065 msgid "Assets not created for {item_code}. You will have to create asset manually." msgstr "" -#: erpnext/controllers/buying_controller.py:1044 +#: erpnext/controllers/buying_controller.py:1052 msgid "Assets {assets_link} created for {item_code}" msgstr "" @@ -6168,7 +6197,7 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1485 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1486 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" @@ -6201,7 +6230,7 @@ msgstr "" msgid "At least one of the Applicable Modules should be selected" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:204 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:222 msgid "At least one of the Selling or Buying must be selected" msgstr "" @@ -6229,7 +6258,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1233 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1234 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6237,15 +6266,15 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1218 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1219 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1225 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1226 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:502 +#: erpnext/stock/services/serial_batch_bundle_service.py:504 msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" @@ -6305,31 +6334,31 @@ msgstr "" msgid "Attribute Value" msgstr "" -#: erpnext/stock/doctype/item/item.py:888 +#: erpnext/stock/doctype/item/item.py:893 msgid "Attribute Value {0} is not valid for the selected attribute {1}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1034 +#: erpnext/stock/doctype/item/item.py:1039 msgid "Attribute table is mandatory" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:107 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:109 msgid "Attribute value: {0} must appear only once" msgstr "" -#: erpnext/stock/doctype/item/item.py:877 +#: erpnext/stock/doctype/item/item.py:882 msgid "Attribute {0} is disabled." msgstr "" -#: erpnext/stock/doctype/item/item.py:865 +#: erpnext/stock/doctype/item/item.py:870 msgid "Attribute {0} is not valid for the selected template." msgstr "" -#: erpnext/stock/doctype/item/item.py:1038 +#: erpnext/stock/doctype/item/item.py:1043 msgid "Attribute {0} selected multiple times in Attributes Table" msgstr "" -#: erpnext/stock/doctype/item/item.py:966 +#: erpnext/stock/doctype/item/item.py:971 msgid "Attributes" msgstr "" @@ -6426,7 +6455,7 @@ msgstr "" msgid "Auto Material Request" msgstr "" -#: erpnext/stock/reorder_item.py:321 +#: erpnext/stock/reorder_item.py:323 msgid "Auto Material Requests Generated" msgstr "" @@ -6476,7 +6505,7 @@ msgstr "" msgid "Auto Reposting of Incorrect Valuation" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:209 msgid "Auto Tax Settings Error" msgstr "" @@ -6537,7 +6566,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:490 +#: erpnext/public/js/utils/sales_common.js:488 msgid "Auto repeat document updated" msgstr "" @@ -6624,7 +6653,7 @@ msgid "Availability Of Slots" msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:391 -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Available" msgstr "" @@ -6661,7 +6690,7 @@ msgstr "" #. 'Pick List Item' #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:664 +#: erpnext/public/js/utils.js:676 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6824,11 +6853,11 @@ msgstr "" msgid "Avg. Selling Price List Rate" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:347 +#: erpnext/accounts/report/gross_profit/gross_profit.py:349 msgid "Avg. Selling Rate" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:966 +#: erpnext/public/js/templates/shop_floor_template.html:986 msgid "Awaiting Transfer" msgstr "" @@ -6882,8 +6911,8 @@ msgstr "" #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 -#: erpnext/stock/doctype/material_request/material_request.js:351 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:810 +#: erpnext/stock/doctype/material_request/material_request.js:352 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:809 #: erpnext/stock/report/bom_search/bom_search.py:38 #: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:524 @@ -7113,7 +7142,7 @@ msgstr "" msgid "BOM Update Tool Log with job status maintained" msgstr "" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:102 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:103 msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" @@ -7142,8 +7171,8 @@ msgstr "" msgid "BOM and Production" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:386 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:862 +#: erpnext/stock/doctype/material_request/material_request.js:387 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:861 msgid "BOM does not contain any stock item" msgstr "" @@ -7159,15 +7188,15 @@ msgstr "" msgid "BOM update is queued and may take a few minutes. Check {0} for progress." msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1418 +#: erpnext/manufacturing/doctype/bom/bom.py:1434 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1413 +#: erpnext/manufacturing/doctype/bom/bom.py:1429 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1416 +#: erpnext/manufacturing/doctype/bom/bom.py:1432 msgid "BOM {0} must be submitted" msgstr "" @@ -7274,7 +7303,7 @@ msgstr "" #: erpnext/stock/report/available_batch_report/available_batch_report.py:62 #: erpnext/stock/report/available_serial_no/available_serial_no.py:126 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:89 #: erpnext/stock/report/stock_balance/stock_balance.py:517 #: erpnext/stock/report/stock_ledger/stock_ledger.py:331 msgid "Balance Qty" @@ -7306,7 +7335,7 @@ msgstr "" #: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json #: erpnext/accounts/report/balance_sheet/balance_sheet.json #: erpnext/accounts/workspace/financial_reports/financial_reports.json -#: erpnext/public/js/financial_statements.js:327 +#: erpnext/public/js/financial_statements.js:352 #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Balance Sheet" @@ -7326,7 +7355,7 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:295 msgid "Balance Sheet requires {0} to be synced to DuckDB" msgstr "" @@ -7347,7 +7376,7 @@ msgid "Balance Type" msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:174 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:91 #: erpnext/stock/report/stock_balance/stock_balance.py:525 #: erpnext/stock/report/stock_ledger/stock_ledger.py:388 msgid "Balance Value" @@ -7378,7 +7407,6 @@ msgstr "" #. Label of the bank (Link) field in DocType 'Payment Request' #. Label of a Link in the Invoicing Workspace #. Option for the 'Salary Mode' (Select) field in DocType 'Employee' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/bank/bank.json #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -7392,7 +7420,6 @@ msgstr "" #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:95 #: erpnext/setup/doctype/employee/employee.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank" msgstr "" @@ -7421,7 +7448,6 @@ msgstr "" #. Label of the bank_account (Link) field in DocType 'Payment Order Reference' #. Label of the bank_account (Link) field in DocType 'Payment Request' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:141 #: banking/src/pages/BankStatementImporter.tsx:90 #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -7440,7 +7466,6 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:16 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:16 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account" msgstr "" @@ -7476,16 +7501,12 @@ msgid "Bank Account No" msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account Subtype" msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_account_type/bank_account_type.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Account Type" msgstr "" @@ -7498,7 +7519,9 @@ msgstr "" msgid "Bank Accounts" msgstr "" +#. Label of a chart in the Accounting Workspace #. Label of the bank_balance (Check) field in DocType 'Email Digest' +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/setup/doctype/email_digest/email_digest.json msgid "Bank Balance" msgstr "" @@ -7522,10 +7545,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_clearance/bank_clearance.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Clearance" msgstr "" @@ -7595,9 +7616,7 @@ msgid "Bank Fee, Salary, etc." msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json -#: erpnext/workspace_sidebar/banking.json msgid "Bank Guarantee" msgstr "" @@ -7625,11 +7644,6 @@ msgstr "" msgid "Bank Overdraft Account" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/banking.json -msgid "Bank Reconciliation" -msgstr "" - #. Name of a report #. Label of a Link in the Invoicing Workspace #: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:208 @@ -7775,19 +7789,15 @@ msgstr "" #. Label of the banking_section (Section Break) field in DocType 'Accounts #. Settings' -#. Name of a Workspace #. Label of a Card Break in the Invoicing Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar #: banking/src/pages/BankReconciliation.tsx:57 #: banking/src/pages/BankReconciliation.tsx:87 #: banking/src/pages/BankStatementImporterContainer.tsx:22 #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/workspace/banking/banking.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/desktop_icon/banking.json #: erpnext/setup/setup_wizard/data/industry_type.txt:8 -#: erpnext/workspace_sidebar/banking.json msgid "Banking" msgstr "" @@ -7796,11 +7806,11 @@ msgstr "" msgid "Barcode Type" msgstr "" -#: erpnext/stock/doctype/item/item.py:547 +#: erpnext/stock/doctype/item/item.py:552 msgid "Barcode {0} already used in Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:562 +#: erpnext/stock/doctype/item/item.py:567 msgid "Barcode {0} is not a valid {1} code" msgstr "" @@ -7955,7 +7965,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #: erpnext/stock/doctype/batch/batch.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158 #: erpnext/stock/report/stock_ledger/stock_ledger.py:418 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:182 @@ -8039,7 +8049,7 @@ msgstr "" #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 #: erpnext/public/js/controllers/transaction.js:2989 -#: erpnext/public/js/utils/barcode_scanner.js:281 +#: erpnext/public/js/utils/barcode_scanner.js:286 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/item_price/item_price.json @@ -8069,11 +8079,11 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1236 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1237 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3566 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3572 msgid "Batch No {0} does not exist" msgstr "" @@ -8081,11 +8091,11 @@ msgstr "" msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:490 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:491 msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:708 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:709 msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" msgstr "" @@ -8100,7 +8110,7 @@ msgstr "" msgid "Batch Nos" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2080 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2081 msgid "Batch Nos are created successfully" msgstr "" @@ -8154,7 +8164,7 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:743 +#: erpnext/manufacturing/doctype/work_order/work_order.py:749 msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" @@ -8231,7 +8241,7 @@ msgstr "" #. Label of the bill_date (Date) field in DocType 'Journal Entry' #. Label of the bill_date (Date) field in DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1208 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210 #: erpnext/accounts/report/purchase_register/purchase_register.py:232 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Bill Date" @@ -8252,7 +8262,7 @@ msgstr "" #. Label of the bill_no (Data) field in DocType 'Journal Entry' #. Label of the bill_no (Data) field in DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1207 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1209 #: erpnext/accounts/report/purchase_register/purchase_register.py:231 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Bill No" @@ -8267,18 +8277,16 @@ msgstr "" #. Label of a Card Break in the Manufacturing Workspace #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/bom/bom.py:1168 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/stock/doctype/material_request/material_request.js:139 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:796 +#: erpnext/stock/doctype/material_request/material_request.js:142 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:795 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Bill of Materials" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Timesheet' -#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/controllers/website_list_for_contact.py:212 #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/doctype/timesheet/timesheet_list.js:9 msgid "Billed" @@ -8496,7 +8504,7 @@ msgstr "" msgid "Billing Zipcode" msgstr "" -#: erpnext/accounts/party.py:619 +#: erpnext/accounts/party.py:635 msgid "Billing currency must be equal to either default company's currency or party account currency" msgstr "" @@ -8642,6 +8650,12 @@ msgstr "" msgid "Block Supplier" msgstr "" +#. Description of the 'Enable Overdue Billing Threshold' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Block submitting a new Sales Invoice when the customer's overdue amount exceeds the Overdue Billing Threshold set on the customer." +msgstr "" + #. Description of the 'Is Frozen' (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n" @@ -8662,7 +8676,7 @@ msgstr "" msgid "Blood Group" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:123 +#: erpnext/public/js/shop_floor/shop_floor.js:149 msgid "Board" msgstr "" @@ -8719,6 +8733,12 @@ msgstr "" msgid "Book Deferred entries based on" msgstr "" +#. Label of the book_stock_expense_gl_entries (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Stock Expense GL Entries" +msgstr "" + #: erpnext/www/book_appointment/index.html:15 msgid "Book an appointment" msgstr "" @@ -8746,6 +8766,12 @@ msgstr "" msgid "Booked Fixed Asset" msgstr "" +#. Description of the 'Book Stock Expense GL Entries' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Books Purchase Expense and Expenses Added To Stock account pairs against stock value. On enabling this, the accounts become mandatory in Company or Item Defaults for Purchase Receipt, Purchase Invoice, Stock Entry, Stock Reconciliation and Landed Cost Voucher" +msgstr "" + #: erpnext/accounts/services/gl_validator.py:143 msgid "Books have been closed until the period ending on {0}" msgstr "" @@ -8782,12 +8808,10 @@ msgstr "" #. Label of the branch (Data) field in DocType 'Branch' #. Label of the branch (Link) field in DocType 'Employee' #. Label of the branch (Link) field in DocType 'Employee Internal Work History' -#. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/sms_center/sms_center.json #: erpnext/setup/doctype/branch/branch.json #: erpnext/setup/doctype/employee/employee.json #: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json -#: erpnext/workspace_sidebar/organization.json msgid "Branch" msgstr "" @@ -8875,7 +8899,6 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace #. Label of a Desktop Icon -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/budget/budget.json #: erpnext/accounts/doctype/cost_center/cost_center.js:45 @@ -8886,9 +8909,9 @@ msgstr "" #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:237 #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:319 #: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:329 -#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:454 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/desktop_icon/budget.json erpnext/workspace_sidebar/budgeting.json +#: erpnext/desktop_icon/budget.json msgid "Budget" msgstr "" @@ -8956,8 +8979,8 @@ msgstr "" msgid "Budget Start Date" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/budgeting.json +#. Label of a chart in the Accounting Workspace +#: erpnext/accounts/workspace/accounting/accounting.json msgid "Budget Variance" msgstr "" @@ -8977,13 +9000,6 @@ msgstr "" msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" -#. Name of a Workspace -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/budgeting/budgeting.json -#: erpnext/workspace_sidebar/budgeting.json -msgid "Budgeting" -msgstr "" - #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" msgstr "" @@ -9134,7 +9150,7 @@ msgstr "" msgid "Buying & Selling Settings" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:368 +#: erpnext/accounts/report/gross_profit/gross_profit.py:370 msgid "Buying Amount" msgstr "" @@ -9174,7 +9190,7 @@ msgstr "" msgid "Buying and Selling" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:219 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:237 msgid "Buying must be checked, if Applicable For is selected as {0}" msgstr "" @@ -9213,11 +9229,6 @@ msgstr "" msgid "CC To" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "COA Importer" -msgstr "" - #. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' #: erpnext/stock/doctype/item_barcode/item_barcode.json msgid "CODE-39" @@ -9235,7 +9246,7 @@ msgstr "" msgid "COGS By Item Group" msgstr "" -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:44 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:55 msgid "COGS Debit" msgstr "" @@ -9522,7 +9533,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1176 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9551,7 +9562,7 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2615 msgid "Can only make payment against unbilled {0}" msgstr "" @@ -9561,7 +9572,7 @@ msgstr "" msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" -#: erpnext/setup/doctype/company/company.py:278 +#: erpnext/setup/doctype/company/company.py:280 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" @@ -9605,7 +9616,7 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/setup/doctype/company/company.py:297 +#: erpnext/setup/doctype/company/company.py:299 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9613,9 +9624,9 @@ msgstr "" msgid "Cannot Create Return" msgstr "" -#: erpnext/stock/doctype/item/item.py:690 -#: erpnext/stock/doctype/item/item.py:703 -#: erpnext/stock/doctype/item/item.py:719 +#: erpnext/stock/doctype/item/item.py:695 +#: erpnext/stock/doctype/item/item.py:708 +#: erpnext/stock/doctype/item/item.py:724 msgid "Cannot Merge" msgstr "" @@ -9639,7 +9650,7 @@ msgstr "" msgid "Cannot apply TDS against multiple parties in one entry" msgstr "" -#: erpnext/stock/doctype/item/item.py:380 +#: erpnext/stock/doctype/item/item.py:385 msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" @@ -9660,15 +9671,15 @@ msgstr "" msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:283 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:851 +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" -#: erpnext/stock/stock_ledger.py:226 +#: erpnext/stock/stock_ledger.py:230 msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" @@ -9680,7 +9691,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted Asset Value Adjustment {0}. Please cancel the Asset Value Adjustment to continue." msgstr "" -#: erpnext/controllers/buying_controller.py:1145 +#: erpnext/controllers/buying_controller.py:1153 msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" @@ -9688,11 +9699,11 @@ msgstr "" msgid "Cannot cancel transaction for Completed Work Order." msgstr "" -#: erpnext/stock/doctype/item/item.py:986 +#: erpnext/stock/doctype/item/item.py:991 msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1147 +#: erpnext/stock/doctype/item/item.py:1152 msgid "Cannot change Item {0} from serialized to non-serialized because a Serial and Batch Bundle exists for it. Please delete or cancel the Serial and Batch Bundle first." msgstr "" @@ -9704,11 +9715,11 @@ msgstr "" msgid "Cannot change Service Stop Date for item in row {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:977 +#: erpnext/stock/doctype/item/item.py:982 msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this." msgstr "" -#: erpnext/setup/doctype/company/company.py:403 +#: erpnext/setup/doctype/company/company.py:405 msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency." msgstr "" @@ -9720,7 +9731,7 @@ msgstr "" msgid "Cannot convert Cost Center to ledger as it has child nodes" msgstr "" -#: erpnext/projects/doctype/task/task.js:49 +#: erpnext/projects/doctype/task/task.js:55 msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}." msgstr "" @@ -9736,6 +9747,10 @@ msgstr "" msgid "Cannot create Intercompany {0}. All items in the source {1} have already been fully invoiced. Please check the existing linked {2}s." msgstr "" +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:103 +msgid "Cannot create Material Request for item {0} in group warehouse {1}." +msgstr "" + #: erpnext/stock/doctype/purchase_receipt/services/reservation.py:49 msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" @@ -9795,7 +9810,7 @@ msgstr "" msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch." msgstr "" -#: erpnext/setup/doctype/company/company.py:629 +#: erpnext/setup/doctype/company/company.py:631 msgid "Cannot disable perpetual inventory, as there are existing Stock Ledger Entries for the company {0}. Please cancel the stock transactions first and try again." msgstr "" @@ -9803,7 +9818,7 @@ msgstr "" msgid "Cannot disable {0} as it may lead to incorrect stock valuation." msgstr "" -#: erpnext/manufacturing/doctype/work_order/services/status.py:254 +#: erpnext/manufacturing/doctype/work_order/services/status.py:263 msgid "Cannot disassemble more than produced quantity." msgstr "" @@ -9811,11 +9826,11 @@ msgstr "" msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble." msgstr "" -#: erpnext/setup/doctype/company/company.py:294 +#: erpnext/setup/doctype/company/company.py:296 msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:45 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9828,11 +9843,11 @@ msgstr "" msgid "Cannot fetch selected rows for submitted Payment Request" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:62 +#: erpnext/public/js/utils/barcode_scanner.js:67 msgid "Cannot find Item or Warehouse with this Barcode" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:63 +#: erpnext/public/js/utils/barcode_scanner.js:68 msgid "Cannot find Item with this Barcode" msgstr "" @@ -9840,7 +9855,7 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1100 +#: erpnext/accounts/party.py:1116 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" @@ -9856,11 +9871,11 @@ msgstr "" msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:904 +#: erpnext/manufacturing/doctype/work_order/work_order.py:910 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:908 +#: erpnext/manufacturing/doctype/work_order/work_order.py:914 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9890,7 +9905,7 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:371 +#: erpnext/selling/doctype/customer/customer.py:385 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" @@ -9915,7 +9930,7 @@ msgstr "" msgid "Cannot set authorization on basis of Discount for {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:777 +#: erpnext/stock/doctype/item/item.py:782 msgid "Cannot set multiple Item Defaults for a company." msgstr "" @@ -9986,7 +10001,7 @@ msgstr "" msgid "Capacity Planning For (Days)" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:662 +#: erpnext/public/js/shop_floor/shop_floor.js:698 msgid "Capacity Reached" msgstr "" @@ -10024,7 +10039,7 @@ msgstr "" msgid "Capital Work in Progress" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:228 +#: erpnext/assets/doctype/asset/asset.js:236 msgid "Capitalize Asset" msgstr "" @@ -10033,7 +10048,7 @@ msgstr "" msgid "Capitalize Repair Cost" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:226 +#: erpnext/assets/doctype/asset/asset.js:234 msgid "Capitalize this asset before submitting." msgstr "" @@ -10107,19 +10122,19 @@ msgstr "" msgid "Cash Flow" msgstr "" -#: erpnext/public/js/financial_statements.js:359 +#: erpnext/public/js/financial_statements.js:384 msgid "Cash Flow Statement" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:187 +#: erpnext/accounts/report/cash_flow/cash_flow.py:203 msgid "Cash Flow from Financing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:180 +#: erpnext/accounts/report/cash_flow/cash_flow.py:196 msgid "Cash Flow from Investing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:168 +#: erpnext/accounts/report/cash_flow/cash_flow.py:184 msgid "Cash Flow from Operations" msgstr "" @@ -10218,16 +10233,12 @@ msgstr "" msgid "Category Details" msgstr "" -#: erpnext/assets/dashboard_fixtures.py:93 -msgid "Category-wise Asset Value" -msgstr "" - -#: erpnext/buying/doctype/purchase_order/purchase_order.py:289 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:290 #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:140 msgid "Caution" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:210 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:218 msgid "Caution: This might alter frozen accounts." msgstr "" @@ -10327,7 +10338,7 @@ msgstr "" msgid "Change in Stock Value" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:773 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:779 msgid "Change the account type to Receivable or select a different account." msgstr "" @@ -10337,7 +10348,7 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:161 +#: erpnext/selling/doctype/customer/customer.py:168 msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" @@ -10345,7 +10356,7 @@ msgstr "" msgid "Changes in {0}" msgstr "" -#: erpnext/stock/doctype/item/item.js:447 +#: erpnext/stock/doctype/item/item.js:462 msgid "Changing Customer Group for the selected Customer is not allowed." msgstr "" @@ -10355,7 +10366,7 @@ msgstr "" msgid "Changing the account in any transaction of the DocTypes listed below will trigger a repost. To prevent reposting, remove the relevant DocType from the list." msgstr "" -#: erpnext/stock/doctype/item/item.js:34 +#: erpnext/stock/doctype/item/item.js:36 msgid "Changing the valuation method to Moving Average will affect new transactions. If backdated entries are added, earlier FIFO-based entries will be reposted, which may change closing balances." msgstr "" @@ -10420,7 +10431,6 @@ msgstr "" #: erpnext/setup/doctype/company/company.js:139 #: erpnext/setup/doctype/company/company.json #: erpnext/setup/workspace/home/home.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/invoicing.json msgid "Chart of Accounts" msgstr "" @@ -10435,11 +10445,9 @@ msgid "Chart of Accounts Importer" msgstr "" #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account_tree.js:191 #: erpnext/accounts/doctype/cost_center/cost_center.js:41 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Chart of Cost Centers" msgstr "" @@ -10681,7 +10689,7 @@ msgstr "" msgid "Clauses and Conditions" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:493 +#: erpnext/public/js/utils/barcode_scanner.js:502 msgid "Clear Last Scanned Warehouse" msgstr "" @@ -10747,7 +10755,7 @@ msgstr "" msgid "Clearing Demo Data..." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:720 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:747 msgid "Click on 'Get Finished Goods for Manufacture' to fetch the items from the above Sales Orders. Items only for which a BOM is present will be fetched." msgstr "" @@ -10755,7 +10763,7 @@ msgstr "" msgid "Click on Add to Holidays. This will populate the holidays table with all the dates that fall on the selected weekly off. Repeat the process for populating the dates for all your weekly holidays" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:715 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:742 msgid "Click on Get Sales Orders to fetch sales orders based on the above filters." msgstr "" @@ -10807,7 +10815,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1375 +#: erpnext/public/js/shop_floor/shop_floor.js:1410 msgid "Close detail / blur search" msgstr "" @@ -10825,7 +10833,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1126 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1132 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -11260,6 +11268,7 @@ msgstr "" #. Label of the company (Link) field in DocType 'Vehicle' #. Label of a Link in the Home Workspace #. Label of the company (Link) field in DocType 'Bin' +#. Label of the company (Link) field in DocType 'Company Restriction' #. Label of the company (Link) field in DocType 'Delivery Note' #. Label of the company (Link) field in DocType 'Delivery Trip' #. Label of the company (Link) field in DocType 'Item Default' @@ -11289,7 +11298,6 @@ msgstr "" #. Label of the company (Link) field in DocType 'Subcontracting Receipt' #. Label of the company (Link) field in DocType 'Issue' #. Label of the company (Link) field in DocType 'Warranty Claim' -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:82 #: banking/src/pages/BankStatementImporter.tsx:84 #: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.js:8 @@ -11478,7 +11486,7 @@ msgstr "" #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/report/project_summary/project_summary.js:8 #: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:45 -#: erpnext/public/js/financial_statements.js:381 +#: erpnext/public/js/financial_statements.js:418 #: erpnext/public/js/purchase_trends_filters.js:8 #: erpnext/public/js/sales_trends_filters.js:51 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json @@ -11529,9 +11537,10 @@ msgstr "" #: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8 #: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8 #: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/company_restriction/company_restriction.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.js:936 +#: erpnext/stock/doctype/item/item.js:957 #: erpnext/stock/doctype/item_default/item_default.json #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json @@ -11597,8 +11606,6 @@ msgstr "" #: erpnext/support/doctype/warranty_claim/warranty_claim.json #: erpnext/support/report/issue_analytics/issue_analytics.js:8 #: erpnext/support/report/issue_summary/issue_summary.js:8 -#: erpnext/workspace_sidebar/accounts_setup.json -#: erpnext/workspace_sidebar/organization.json msgid "Company" msgstr "" @@ -11667,11 +11674,11 @@ msgstr "" msgid "Company Address Name" msgstr "" -#: erpnext/controllers/accounts_controller.py:1704 +#: erpnext/controllers/accounts_controller.py:1631 msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager." msgstr "" -#: erpnext/controllers/accounts_controller.py:1692 +#: erpnext/controllers/accounts_controller.py:1619 msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager." msgstr "" @@ -11757,6 +11764,23 @@ msgstr "" msgid "Company Not Linked" msgstr "" +#. Name of a DocType +#: erpnext/stock/doctype/company_restriction/company_restriction.json +msgid "Company Restriction" +msgstr "" + +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Supplier' +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Customer' +#. Label of the company_restrictions_section (Section Break) field in DocType +#. 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Company Restrictions" +msgstr "" + #. Label of the shipping_address (Link) field in DocType 'Request for #. Quotation' #. Label of the shipping_address (Link) field in DocType 'Subcontracting Order' @@ -11770,7 +11794,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:697 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11782,8 +11806,8 @@ msgstr "" msgid "Company currencies of both the companies should match for Inter Company Transactions." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:380 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:856 +#: erpnext/stock/doctype/material_request/material_request.js:381 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:855 msgid "Company field is required" msgstr "" @@ -11894,7 +11918,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:610 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -11929,7 +11953,7 @@ msgstr "" msgid "Completed Operation" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:990 +#: erpnext/public/js/templates/shop_floor_template.html:1010 msgid "Completed Operations" msgstr "" @@ -11949,17 +11973,17 @@ msgstr "" msgid "Completed Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/services/operations.py:274 +#: erpnext/manufacturing/doctype/work_order/services/operations.py:294 msgid "Completed Qty cannot be greater than 'Qty to Manufacture'" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:258 #: erpnext/manufacturing/doctype/job_card/job_card.js:392 -#: erpnext/public/js/shop_floor/shop_floor.js:768 +#: erpnext/public/js/shop_floor/shop_floor.js:804 msgid "Completed Quantity" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:825 +#: erpnext/public/js/shop_floor/shop_floor.js:861 msgid "Completed Quantity should be greater than 0" msgstr "" @@ -11997,7 +12021,7 @@ msgstr "" msgid "Completion Date" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:82 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:85 msgid "Completion Date can not be before Failure Date. Please adjust the dates accordingly." msgstr "" @@ -12151,7 +12175,7 @@ msgstr "" msgid "Consider Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1099 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1103 msgid "Consider Process Loss" msgstr "" @@ -12663,7 +12687,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:915 +#: erpnext/public/js/utils.js:927 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12689,7 +12713,7 @@ msgstr "" msgid "Conversion Rate" msgstr "" -#: erpnext/stock/doctype/item/item.py:463 +#: erpnext/stock/doctype/item/item.py:468 msgid "Conversion factor for default Unit of Measure must be 1 in row {0}" msgstr "" @@ -12697,15 +12721,15 @@ msgstr "" msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}." msgstr "" -#: erpnext/controllers/accounts_controller.py:1385 +#: erpnext/controllers/accounts_controller.py:1312 msgid "Conversion rate cannot be 0" msgstr "" -#: erpnext/controllers/accounts_controller.py:1392 +#: erpnext/controllers/accounts_controller.py:1319 msgid "Conversion rate is 1.00, but document currency is different from company currency" msgstr "" -#: erpnext/controllers/accounts_controller.py:1388 +#: erpnext/controllers/accounts_controller.py:1315 msgid "Conversion rate must be 1.00 if document currency is same as company currency" msgstr "" @@ -12912,7 +12936,6 @@ msgstr "" #. Item' #. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt #. Supplied Item' -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:567 #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:626 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1179 @@ -12957,7 +12980,7 @@ msgstr "" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:28 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:47 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:30 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:47 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:42 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 @@ -12965,7 +12988,7 @@ msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:154 #: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 -#: erpnext/accounts/report/gross_profit/gross_profit.py:395 +#: erpnext/accounts/report/gross_profit/gross_profit.py:397 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 #: erpnext/accounts/report/purchase_register/purchase_register.js:46 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:30 @@ -12989,7 +13012,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 #: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 -#: erpnext/public/js/financial_statements.js:475 +#: erpnext/public/js/financial_statements.js:512 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/doctype/delivery_note/delivery_note.json @@ -13006,16 +13029,13 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Cost Center" msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/budgeting.json msgid "Cost Center Allocation" msgstr "" @@ -13041,12 +13061,16 @@ msgstr "" msgid "Cost Center Number" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:122 +msgid "Cost Center Validation Error" +msgstr "" + #. Label of a Card Break in the Invoicing Workspace #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:546 +#: erpnext/public/js/utils/sales_common.js:544 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -13059,7 +13083,7 @@ msgid "Cost Center is required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:644 -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:401 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:410 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -13087,7 +13111,7 @@ msgstr "" msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" -#: erpnext/accounts/report/financial_statements.py:685 +#: erpnext/accounts/report/financial_statements.py:863 msgid "Cost Center: {0} does not exist" msgstr "" @@ -13246,7 +13270,7 @@ msgid "Could not re-extract the table." msgstr "" #: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py:123 -#: erpnext/accounts/report/financial_statements.py:241 +#: erpnext/accounts/report/financial_statements.py:420 msgid "Could not retrieve information for {0}." msgstr "" @@ -13418,7 +13442,7 @@ msgstr "" msgid "Create Inter Company Journal Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:55 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:62 msgid "Create Invoices" msgstr "" @@ -13461,8 +13485,8 @@ msgstr "" msgid "Create Ledger Entries for Change Amount" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:257 -#: erpnext/selling/doctype/customer/customer.js:289 +#: erpnext/buying/doctype/supplier/supplier.js:266 +#: erpnext/selling/doctype/customer/customer.js:298 msgid "Create Link" msgstr "" @@ -13609,9 +13633,9 @@ msgstr "" #. Title of an Onboarding Step #. Label of an action in the Onboarding Step 'Create Sales Invoice' #: erpnext/accounts/onboarding_step/create_sales_invoice/create_sales_invoice.json -#: erpnext/projects/doctype/timesheet/timesheet.js:55 -#: erpnext/projects/doctype/timesheet/timesheet.js:231 -#: erpnext/projects/doctype/timesheet/timesheet.js:235 +#: erpnext/projects/doctype/timesheet/timesheet.js:56 +#: erpnext/projects/doctype/timesheet/timesheet.js:233 +#: erpnext/projects/doctype/timesheet/timesheet.js:237 #: erpnext/selling/onboarding_step/create_sales_invoice/create_sales_invoice.json msgid "Create Sales Invoice" msgstr "" @@ -13634,7 +13658,7 @@ msgid "Create Service Item" msgstr "Vytvořit servisní položku" #: erpnext/stock/dashboard/item_dashboard.js:283 -#: erpnext/stock/doctype/material_request/material_request.js:478 +#: erpnext/stock/doctype/material_request/material_request.js:479 msgid "Create Stock Entry" msgstr "" @@ -13717,12 +13741,12 @@ msgstr "" msgid "Create Users" msgstr "" -#: erpnext/stock/doctype/item/item.js:1394 +#: erpnext/stock/doctype/item/item.js:1415 msgid "Create Variant" msgstr "" -#: erpnext/stock/doctype/item/item.js:1206 -#: erpnext/stock/doctype/item/item.js:1243 +#: erpnext/stock/doctype/item/item.js:1227 +#: erpnext/stock/doctype/item/item.js:1264 msgid "Create Variants" msgstr "" @@ -13741,7 +13765,7 @@ msgstr "Vytvořit výrobní příkaz" msgid "Create Workstation" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1042 +#: erpnext/public/js/shop_floor/shop_floor.js:1078 msgid "Create a Manufacture stock entry for the finished goods?" msgstr "" @@ -13757,12 +13781,12 @@ msgstr "" msgid "Create a new rule to automatically classify transactions." msgstr "" -#: erpnext/stock/doctype/item/item.js:1226 -#: erpnext/stock/doctype/item/item.js:1387 +#: erpnext/stock/doctype/item/item.js:1247 +#: erpnext/stock/doctype/item/item.js:1408 msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2157 +#: erpnext/stock/stock_ledger.py:2205 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13800,7 +13824,7 @@ msgstr "" msgid "Created {0} draft Grouped Payment Entries" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:230 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:232 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13837,11 +13861,11 @@ msgstr "" msgid "Creating Dimensions..." msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:92 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:102 msgid "Creating Journal Entries..." msgstr "" -#: erpnext/stock/doctype/item/item.js:995 +#: erpnext/stock/doctype/item/item.js:1016 msgid "Creating Opening Stock Entry..." msgstr "" @@ -13849,7 +13873,7 @@ msgstr "" msgid "Creating Packing Slip ..." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:61 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:68 msgid "Creating Purchase Invoices ..." msgstr "" @@ -13867,7 +13891,7 @@ msgstr "" msgid "Creating Return of Components ..." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:59 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:66 msgid "Creating Sales Invoices ..." msgstr "" @@ -13895,7 +13919,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 msgid "Creating {} out of {} {}" msgstr "" @@ -13948,6 +13972,13 @@ msgstr "" msgid "Credit" msgstr "" +#. Label of the credit_limits (Table) field in DocType 'Customer' +#. Label of the credit_limits (Table) field in DocType 'Customer Group' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Credit & Overdue Limits" +msgstr "" + #: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" @@ -14017,23 +14048,19 @@ msgstr "" msgid "Credit Days" msgstr "" -#. Label of the credit_limits (Table) field in DocType 'Customer' #. Label of the credit_limit (Currency) field in DocType 'Customer Credit #. Limit' #. Label of the credit_limit (Currency) field in DocType 'Company' -#. Label of the credit_limits (Table) field in DocType 'Customer Group' #. Label of the section_credit_limit (Section Break) field in DocType 'Supplier #. Group' -#: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:65 #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/customer_group/customer_group.json #: erpnext/setup/doctype/supplier_group/supplier_group.json msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:542 +#: erpnext/selling/doctype/customer/customer.py:559 msgid "Credit Limit Crossed" msgstr "" @@ -14068,7 +14095,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:176 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219 #: erpnext/controllers/sales_and_purchase_return.py:462 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:303 #: erpnext/stock/doctype/delivery_note/delivery_note.js:89 @@ -14104,7 +14131,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:380 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:388 -#: erpnext/controllers/accounts_controller.py:1287 +#: erpnext/controllers/accounts_controller.py:1214 msgid "Credit To" msgstr "" @@ -14113,20 +14140,20 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:508 -#: erpnext/selling/doctype/customer/customer.py:564 +#: erpnext/selling/doctype/customer/customer.py:525 +#: erpnext/selling/doctype/customer/customer.py:581 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:398 +#: erpnext/selling/doctype/customer/customer.py:412 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:563 +#: erpnext/selling/doctype/customer/customer.py:580 msgid "Credit limit reached for customer {0}" msgstr "" -#: erpnext/accounts/utils.py:2854 +#: erpnext/accounts/utils.py:2850 msgid "Credit limit warning — submission may be blocked: {0}" msgstr "" @@ -14186,7 +14213,7 @@ msgstr "" msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:196 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14243,10 +14270,8 @@ msgstr "" #. Label of a Link in the Invoicing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/setup/doctype/currency_exchange/currency_exchange.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Currency Exchange" msgstr "" @@ -14256,7 +14281,6 @@ msgstr "" #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json -#: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Currency Exchange Settings" msgstr "" @@ -14309,13 +14333,13 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 -msgid "Currency filters are currently unsupported in Custom Financial Report." -msgstr "" +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:260 +msgid "Currency filters are currently unsupported in Custom Financial Report" +msgstr "Filtry měny momentálně nejsou ve vlastním finančním výkazu podporovány" #: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:215 #: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:284 -#: erpnext/accounts/utils.py:2573 +#: erpnext/accounts/utils.py:2569 msgid "Currency for {0} must be {1}" msgstr "" @@ -14327,7 +14351,7 @@ msgstr "" msgid "Currency of the price list {0} must be {1} or {2}" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:298 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 msgid "Currency should be same as Price List Currency: {0}" msgstr "" @@ -14373,7 +14397,7 @@ msgstr "" msgid "Current BOM" msgstr "" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:81 msgid "Current BOM and New BOM cannot be the same" msgstr "" @@ -14603,7 +14627,7 @@ msgstr "" #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:38 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:29 #: erpnext/accounts/report/general_ledger/general_ledger.html:136 -#: erpnext/accounts/report/gross_profit/gross_profit.py:416 +#: erpnext/accounts/report/gross_profit/gross_profit.py:418 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:38 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:22 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:221 @@ -14614,8 +14638,8 @@ msgstr "" #: erpnext/accounts/report/sales_register/sales_register.py:201 #: erpnext/assets/doctype/asset/asset.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/supplier/supplier.js:225 -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/buying/doctype/supplier/supplier.js:234 +#: erpnext/controllers/trends.py:434 erpnext/crm/doctype/contract/contract.json #: erpnext/crm/doctype/lead/lead.js:32 #: erpnext/crm/doctype/opportunity/opportunity.js:99 #: erpnext/crm/doctype/prospect/prospect.js:8 @@ -14628,7 +14652,7 @@ msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json #: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/timesheet/timesheet.js:223 +#: erpnext/projects/doctype/timesheet/timesheet.js:225 #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:46 #: erpnext/public/js/sales_trends_filters.js:25 @@ -14676,7 +14700,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/shipment/shipment.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:494 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:493 #: erpnext/stock/doctype/warehouse/warehouse.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.js:36 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:121 @@ -14696,7 +14720,6 @@ msgstr "" #: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/selling.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Customer" msgstr "Zákazník" @@ -14774,7 +14797,7 @@ msgstr "" #. Label of the customer_contact_display (Small Text) field in DocType #. 'Purchase Order' #. Label of the customer_contact (Small Text) field in DocType 'Delivery Stop' -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1189 #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/stock/doctype/delivery_stop/delivery_stop.json msgid "Customer Contact" @@ -14880,15 +14903,16 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:115 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1245 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1247 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:96 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:187 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:56 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:163 -#: erpnext/accounts/report/gross_profit/gross_profit.py:423 +#: erpnext/accounts/report/gross_profit/gross_profit.py:425 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:208 #: erpnext/accounts/report/sales_register/sales_register.js:27 #: erpnext/accounts/report/sales_register/sales_register.py:216 +#: erpnext/controllers/trends.py:465 #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/doctype/prospect/prospect.json #: erpnext/crm/workspace/crm/crm.json @@ -14941,7 +14965,7 @@ msgstr "" msgid "Customer Items" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1236 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1238 msgid "Customer LPO" msgstr "" @@ -14993,14 +15017,15 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1178 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:92 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:35 -#: erpnext/accounts/report/gross_profit/gross_profit.py:430 +#: erpnext/accounts/report/gross_profit/gross_profit.py:432 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:228 #: erpnext/accounts/report/sales_register/sales_register.py:207 #: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/controllers/trends.py:441 #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json @@ -15099,7 +15124,7 @@ msgstr "" msgid "Customer Provided Item Cost" msgstr "" -#: erpnext/setup/doctype/company/company.py:555 +#: erpnext/setup/doctype/company/company.py:557 msgid "Customer Service" msgstr "" @@ -15156,12 +15181,16 @@ msgstr "" msgid "Customer required for 'Customerwise Discount'" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:885 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:891 #: erpnext/selling/doctype/sales_order/sales_order.py:392 #: erpnext/stock/doctype/delivery_note/delivery_note.py:393 msgid "Customer {0} does not belong to project {1}" msgstr "" +#: erpnext/selling/doctype/customer/customer.py:605 +msgid "Customer {0} has an overdue billing limit. Overdue amount {1} exceeds the allowed threshold {2}." +msgstr "" + #. Label of the customer_item_code (Data) field in DocType 'POS Invoice Item' #. Label of the customer_item_code (Data) field in DocType 'Sales Invoice Item' #. Label of the customer_item_code (Data) field in DocType 'Quotation Item' @@ -15270,7 +15299,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:751 +#: erpnext/projects/doctype/project/project.py:781 msgid "Daily Project Summary for {0}" msgstr "" @@ -15577,7 +15606,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:178 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1220 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1222 #: erpnext/controllers/sales_and_purchase_return.py:466 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:304 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45 @@ -15605,13 +15634,13 @@ msgstr "" #. Label of the debit_to (Link) field in DocType 'Sales Invoice' #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:769 -#: erpnext/controllers/accounts_controller.py:1287 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:775 +#: erpnext/controllers/accounts_controller.py:1214 msgid "Debit To" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:760 msgid "Debit To is required" msgstr "" @@ -15659,11 +15688,11 @@ msgstr "" msgid "Debtor Turnover Ratio" msgstr "" -#: erpnext/accounts/party.py:626 +#: erpnext/accounts/party.py:642 msgid "Debtor/Creditor" msgstr "" -#: erpnext/accounts/party.py:629 +#: erpnext/accounts/party.py:645 msgid "Debtor/Creditor Advance" msgstr "" @@ -15687,7 +15716,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:639 +#: erpnext/public/js/utils/sales_common.js:637 msgid "Declare Lost" msgstr "" @@ -15718,11 +15747,6 @@ msgstr "" msgid "Deductee Details" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/taxes.json -msgid "Deduction Certificate" -msgstr "" - #. Label of the deductions_or_loss_section (Section Break) field in DocType #. 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -15765,14 +15789,14 @@ msgstr "" #. Label of the default_advance_paid_account (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:388 +#: erpnext/setup/doctype/company/company.py:390 msgid "Default Advance Paid Account" msgstr "" #. Label of the default_advance_received_account (Link) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json -#: erpnext/setup/doctype/company/company.py:377 +#: erpnext/setup/doctype/company/company.py:379 msgid "Default Advance Received Account" msgstr "" @@ -15787,7 +15811,7 @@ msgstr "" msgid "Default BOM" msgstr "" -#: erpnext/stock/doctype/item/item.py:506 +#: erpnext/stock/doctype/item/item.py:511 msgid "Default BOM ({0}) must be active for this item or its template" msgstr "" @@ -15858,6 +15882,11 @@ msgstr "" msgid "Default Costing Rate" msgstr "" +#. Label of the country (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Country" +msgstr "" + #. Label of the default_currency (Link) field in DocType 'Company' #. Label of the default_currency (Link) field in DocType 'Global Defaults' #: erpnext/setup/doctype/company/company.json @@ -16110,15 +16139,15 @@ msgstr "" msgid "Default Unit of Measure" msgstr "" -#: erpnext/stock/doctype/item/item.py:1428 +#: erpnext/stock/doctype/item/item.py:1433 msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You need to either cancel the linked documents or create a new Item." msgstr "" -#: erpnext/stock/doctype/item/item.py:1408 +#: erpnext/stock/doctype/item/item.py:1413 msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM." msgstr "" -#: erpnext/stock/doctype/item/item.py:1012 +#: erpnext/stock/doctype/item/item.py:1017 msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'" msgstr "" @@ -16134,7 +16163,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Stock Reconciliation' #. Label of the default_warehouse (Link) field in DocType 'Stock Settings' #: erpnext/manufacturing/doctype/bom/bom.json -#: erpnext/stock/doctype/item/item.js:957 +#: erpnext/stock/doctype/item/item.js:978 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json #: erpnext/stock/doctype/stock_settings/stock_settings.json @@ -16172,8 +16201,8 @@ msgstr "" msgid "Default tax templates for sales, purchase and items are created." msgstr "" -#: erpnext/stock/doctype/item/item.js:949 -#: erpnext/stock/doctype/item/item.js:961 +#: erpnext/stock/doctype/item/item.js:970 +#: erpnext/stock/doctype/item/item.js:982 msgid "Default warehouse from Item Defaults." msgstr "" @@ -16421,7 +16450,7 @@ msgstr "" #. Order' #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/buying/doctype/purchase_order/purchase_order_list.js:20 -#: erpnext/controllers/website_list_for_contact.py:216 +#: erpnext/controllers/website_list_for_contact.py:218 #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/shipment/shipment.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -16533,7 +16562,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:908 +#: erpnext/public/js/utils.js:920 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16595,7 +16624,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:59 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:152 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:134 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Delivery Note" @@ -16638,11 +16667,11 @@ msgstr "" msgid "Delivery Note Trends" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028 msgid "Delivery Note {0} is not submitted" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1240 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75 msgid "Delivery Notes" msgstr "" @@ -16850,7 +16879,7 @@ msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:109 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181 #: erpnext/accounts/report/account_balance/account_balance.js:44 -#: erpnext/accounts/report/cash_flow/cash_flow.py:170 +#: erpnext/accounts/report/cash_flow/cash_flow.py:186 #: erpnext/assets/doctype/asset/asset.json msgid "Depreciation" msgstr "" @@ -16858,7 +16887,7 @@ msgstr "" #. Label of the depreciation_amount (Currency) field in DocType 'Depreciation #. Schedule' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:167 -#: erpnext/assets/doctype/asset/asset.js:384 +#: erpnext/assets/doctype/asset/asset.js:392 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Depreciation Amount" msgstr "" @@ -16941,7 +16970,7 @@ msgstr "" msgid "Depreciation Posting Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:928 +#: erpnext/assets/doctype/asset/asset.js:936 msgid "Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" @@ -17010,7 +17039,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:618 +#: erpnext/public/js/utils/sales_common.js:616 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -17213,6 +17242,10 @@ msgstr "" msgid "Dimension Name" msgstr "" +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 +msgid "Dimension-based grouping is currently unsupported in Custom Financial Report" +msgstr "" + #. Name of a report #: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.json msgid "Dimension-wise Accounts Balance Report" @@ -17244,25 +17277,6 @@ msgstr "" msgid "Direct return is not allowed for Timesheet." msgstr "" -#. Label of the disabled (Check) field in DocType 'Account' -#. Label of the disabled (Check) field in DocType 'Accounting Dimension' -#. Label of the disable (Check) field in DocType 'Pricing Rule' -#. Label of the disable (Check) field in DocType 'Promotional Scheme' -#. Label of the disable (Check) field in DocType 'Promotional Scheme Price -#. Discount' -#. Label of the disable (Check) field in DocType 'Promotional Scheme Product -#. Discount' -#. Label of the disable (Check) field in DocType 'Putaway Rule' -#: erpnext/accounts/doctype/account/account.json -#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json -#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.json -msgid "Disable" -msgstr "" - #. Label of the disable_capacity_planning (Check) field in DocType #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json @@ -17387,9 +17401,9 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' -#: erpnext/manufacturing/doctype/work_order/work_order.js:1077 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:392 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:435 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1081 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:391 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:434 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Disassemble" @@ -17622,7 +17636,7 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3095 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3096 msgid "Discount of {0} applied as per Payment Term" msgstr "" @@ -17694,7 +17708,7 @@ msgstr "" msgid "Dislikes" msgstr "" -#: erpnext/setup/doctype/company/company.py:549 +#: erpnext/setup/doctype/company/company.py:551 msgid "Dispatch" msgstr "" @@ -17934,7 +17948,7 @@ msgstr "" msgid "Do not import" msgstr "" -#. Description of the 'Hide Currency Symbol' (Select) field in DocType 'Global +#. Description of the 'Hide Currency Symbol' (Check) field in DocType 'Global #. Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "Do not show any symbol like $ etc next to currencies." @@ -17958,7 +17972,7 @@ msgstr "" msgid "Do not use Batch-wise Valuation" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:966 +#: erpnext/assets/doctype/asset/asset.js:974 msgid "Do you really want to restore this scrapped asset?" msgstr "" @@ -17966,11 +17980,7 @@ msgstr "" msgid "Do you still want to enable immutable ledger?" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:109 -msgid "Do you still want to enable negative inventory?" -msgstr "" - -#: erpnext/stock/doctype/item/item.js:42 +#: erpnext/stock/doctype/item/item.js:44 msgid "Do you want to change valuation method?" msgstr "" @@ -17978,7 +17988,7 @@ msgstr "" msgid "Do you want to notify all the customers by email?" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:334 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:360 msgid "Do you want to submit the material request" msgstr "" @@ -18222,23 +18232,21 @@ msgstr "" msgid "Drop some files here, or click to select files" msgstr "" -#: erpnext/accounts/party.py:719 +#: erpnext/accounts/party.py:735 msgid "Due Date cannot be after {0}" msgstr "" -#: erpnext/accounts/party.py:695 +#: erpnext/accounts/party.py:711 msgid "Due Date cannot be before {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:167 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:175 msgid "Due to stock closing entry {0}, you cannot repost item valuation before {1}" msgstr "" #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/dunning/dunning.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:158 -#: erpnext/workspace_sidebar/banking.json msgid "Dunning" msgstr "" @@ -18270,6 +18278,14 @@ msgstr "" msgid "Dunning Letter Text" msgstr "" +#: erpnext/accounts/doctype/dunning/dunning.py:184 +msgid "Dunning Letter for Dunning Type {0} in language '{1}' not found." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.py:188 +msgid "Dunning Letter for Dunning Type {0} not found." +msgstr "" + #. Label of the dunning_level (Int) field in DocType 'Overdue Payment' #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json msgid "Dunning Level" @@ -18278,10 +18294,8 @@ msgstr "" #. Label of the dunning_type (Link) field in DocType 'Dunning' #. Name of a DocType #. Label of the dunning_type (Data) field in DocType 'Dunning Type' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/dunning/dunning.json #: erpnext/accounts/doctype/dunning_type/dunning_type.json -#: erpnext/workspace_sidebar/banking.json msgid "Dunning Type" msgstr "" @@ -18335,7 +18349,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1522 +#: erpnext/stock/serial_batch_bundle.py:1528 msgid "Duplicate Serial Number Error" msgstr "" @@ -18359,6 +18373,10 @@ msgstr "" msgid "Duplicate item group found in the item group table" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:133 +msgid "Duplicate languages found on Dunning Letter Text. Keep only one of them." +msgstr "" + #: erpnext/projects/doctype/project/project.js:186 msgid "Duplicate project has been created" msgstr "" @@ -18433,6 +18451,7 @@ msgstr "" #. Label of a Desktop Icon #: erpnext/desktop_icon/erpnext.json +#: erpnext/public/js/shop_floor/shop_floor.js:103 msgid "ERPNext" msgstr "" @@ -18489,7 +18508,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:212 +#: erpnext/controllers/item_variant.py:274 msgid "Edit Not Allowed" msgstr "" @@ -18784,7 +18803,7 @@ msgstr "" #: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:24 #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:10 #: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:45 -#: erpnext/public/js/shop_floor/shop_floor.js:690 +#: erpnext/public/js/shop_floor/shop_floor.js:726 #: erpnext/quality_management/doctype/non_conformance/non_conformance.json #: erpnext/setup/doctype/company/company.json #: erpnext/setup/doctype/department/department.json @@ -18910,7 +18929,7 @@ msgstr "" msgid "Employee {0} not found" msgstr "Zaměstnanec {0} nebyl nalezen" -#: erpnext/public/js/shop_floor/shop_floor.js:684 +#: erpnext/public/js/shop_floor/shop_floor.js:720 msgid "Employees" msgstr "" @@ -18937,7 +18956,7 @@ msgstr "" msgid "Enable Accounting Dimensions" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1743 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1754 msgid "Enable Allow Partial Reservation in the Stock Settings to reserve partial stock." msgstr "" @@ -18953,7 +18972,7 @@ msgstr "" msgid "Enable Auto Email" msgstr "" -#: erpnext/stock/doctype/item/item.py:1216 +#: erpnext/stock/doctype/item/item.py:1221 msgid "Enable Auto Re-Order" msgstr "" @@ -19048,6 +19067,12 @@ msgstr "" msgid "Enable Opportunity Creation from Contact Us" msgstr "" +#. Label of the enable_overdue_billing_threshold (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Overdue Billing Threshold" +msgstr "" + #. Label of the enable_parallel_reposting (Check) field in DocType 'Stock #. Reposting Settings' #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json @@ -19272,8 +19297,8 @@ msgstr "" msgid "End Date cannot be before Start Date." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:880 -#: erpnext/public/js/templates/shop_floor_template.html:766 +#: erpnext/public/js/shop_floor/shop_floor.js:916 +#: erpnext/public/js/templates/shop_floor_template.html:786 msgid "End Session" msgstr "" @@ -19284,14 +19309,14 @@ msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:331 #: erpnext/manufacturing/doctype/job_card/job_card.js:399 #: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json -#: erpnext/public/js/shop_floor/shop_floor.js:815 +#: erpnext/public/js/shop_floor/shop_floor.js:851 #: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json #: erpnext/support/doctype/service_day/service_day.json #: erpnext/telephony/doctype/call_log/call_log.json msgid "End Time" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:367 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:366 msgid "End Transit" msgstr "" @@ -19303,11 +19328,11 @@ msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:25 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:147 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:89 -#: erpnext/public/js/financial_statements.js:443 +#: erpnext/public/js/financial_statements.js:480 msgid "End Year" msgstr "" -#: erpnext/accounts/report/financial_statements.py:133 +#: erpnext/accounts/report/financial_statements.py:310 msgid "End Year cannot be before Start Year" msgstr "" @@ -19326,7 +19351,7 @@ msgstr "" msgid "End of Life" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1378 +#: erpnext/public/js/shop_floor/shop_floor.js:1413 msgid "End session for active job" msgstr "" @@ -19405,7 +19430,7 @@ msgstr "" msgid "Enter amount to be redeemed." msgstr "" -#: erpnext/stock/doctype/item/item.js:1556 +#: erpnext/stock/doctype/item/item.js:1577 msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field." msgstr "" @@ -19417,7 +19442,7 @@ msgstr "" msgid "Enter customer's phone number" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:937 +#: erpnext/assets/doctype/asset/asset.js:945 msgid "Enter date to scrap asset" msgstr "" @@ -19460,15 +19485,15 @@ msgstr "" msgid "Enter the name of the bank or lending institution before submitting." msgstr "" -#: erpnext/stock/doctype/item/item.js:1582 +#: erpnext/stock/doctype/item/item.js:1603 msgid "Enter the opening stock units." msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:995 +#: erpnext/manufacturing/doctype/bom/bom.js:999 msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1243 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1254 msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set." msgstr "" @@ -19515,7 +19540,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:275 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19539,7 +19564,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:317 msgid "Error Occurred" msgstr "" @@ -19571,7 +19596,7 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:762 msgid "Error while reposting item valuation" msgstr "" @@ -19629,7 +19654,7 @@ msgstr "" msgid "Example URL" msgstr "" -#: erpnext/stock/doctype/item/item.py:1128 +#: erpnext/stock/doctype/item/item.py:1133 msgid "Example of a linked document: {0}" msgstr "" @@ -19648,7 +19673,7 @@ msgstr "Příklad: ABCD.#####. Pokud je nastavena řada a v transakcích není u msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2446 +#: erpnext/stock/stock_ledger.py:2494 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19706,7 +19731,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json -#: erpnext/setup/doctype/company/company.py:743 +#: erpnext/setup/doctype/company/company.py:745 msgid "Exchange Gain/Loss" msgstr "" @@ -19811,7 +19836,7 @@ msgstr "" msgid "Excise Entry" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:1520 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:1524 msgid "Excise Invoice" msgstr "" @@ -20002,7 +20027,7 @@ msgstr "" msgid "Expected Value After Useful Life" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:936 +#: erpnext/public/js/shop_floor/shop_floor.js:972 msgid "Expected: {0}" msgstr "" @@ -20020,12 +20045,12 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:206 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:220 +#: erpnext/stock/services/base_stock_gl_composer.py:276 msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account" msgstr "" @@ -20077,7 +20102,7 @@ msgstr "" msgid "Expense Account" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:199 +#: erpnext/stock/services/base_stock_gl_composer.py:266 msgid "Expense Account Missing" msgstr "" @@ -20111,6 +20136,32 @@ msgstr "" msgid "Expenses" msgstr "" +#. Label of the expenses_added_to_stock_account (Link) field in DocType +#. 'Company' +#. Label of the expenses_added_to_stock_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_expenses_added_to_stock_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Expenses Added To Stock Account" +msgstr "" + +#. Label of the expenses_added_to_stock_contra_account (Link) field in DocType +#. 'Company' +#. Label of the expenses_added_to_stock_contra_account (Link) field in DocType +#. 'Item Default' +#. Label of the vf_expenses_added_to_stock_contra_account (Read Only) field in +#. DocType 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Expenses Added To Stock Contra Account" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:217 +msgid "Expenses Added To Stock for Item {0}" +msgstr "" + #. Option for the 'Account Type' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92 @@ -20128,7 +20179,7 @@ msgid "Expenses Included In Valuation" msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:310 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:518 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:517 msgid "Expired Batches" msgstr "" @@ -20265,11 +20316,6 @@ msgstr "" msgid "FIFO/LIFO Queue" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "FX Revaluation" -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Fahrenheit" @@ -20318,7 +20364,7 @@ msgstr "" msgid "Failed to personalize your setup" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:269 +#: erpnext/assets/doctype/asset/asset.js:277 msgid "Failed to post depreciation entries" msgstr "" @@ -20343,7 +20389,7 @@ msgstr "" msgid "Failed to setup defaults" msgstr "" -#: erpnext/setup/doctype/company/company.py:923 +#: erpnext/setup/doctype/company/company.py:925 msgid "Failed to setup defaults for country {0}. Please contact support." msgstr "" @@ -20454,8 +20500,8 @@ msgstr "" msgid "Fetch Value From" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:372 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:833 +#: erpnext/stock/doctype/material_request/material_request.js:373 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:832 msgid "Fetch exploded BOM (including sub-assemblies)" msgstr "" @@ -20541,7 +20587,7 @@ msgstr "" #: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 -#: erpnext/public/js/financial_statements.js:395 +#: erpnext/public/js/financial_statements.js:432 msgid "Filter Based On" msgstr "" @@ -20622,7 +20668,6 @@ msgstr "" #. Label of the finance_book (Link) field in DocType 'Asset Finance Book' #. Label of the finance_book (Link) field in DocType 'Asset Shift Allocation' #. Label of the finance_book (Link) field in DocType 'Asset Value Adjustment' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json #: erpnext/accounts/doctype/finance_book/finance_book.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json @@ -20652,8 +20697,7 @@ msgstr "" #: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:48 -#: erpnext/public/js/financial_statements.js:389 -#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/public/js/financial_statements.js:426 msgid "Finance Book" msgstr "" @@ -20697,11 +20741,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:288 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:285 msgid "Financial Report Template {0} not found" msgstr "" @@ -20723,7 +20767,7 @@ msgstr "" #. Label of a Card Break in the Financial Reports Workspace #: erpnext/accounts/workspace/financial_reports/financial_reports.json -#: erpnext/public/js/financial_statements.js:325 +#: erpnext/public/js/financial_statements.js:350 msgid "Financial Statements" msgstr "" @@ -20737,9 +20781,9 @@ msgstr "" msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) " msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:905 -#: erpnext/manufacturing/doctype/work_order/work_order.js:920 -#: erpnext/manufacturing/doctype/work_order/work_order.js:929 +#: erpnext/manufacturing/doctype/work_order/work_order.js:909 +#: erpnext/manufacturing/doctype/work_order/work_order.js:924 +#: erpnext/manufacturing/doctype/work_order/work_order.js:933 msgid "Finish" msgstr "" @@ -20770,7 +20814,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:930 +#: erpnext/public/js/utils.js:942 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20783,7 +20827,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:948 +#: erpnext/public/js/utils.js:960 msgid "Finished Good Item Qty" msgstr "" @@ -20850,7 +20894,7 @@ msgid "Finished Good {0} must be a sub-contracted item." msgstr "" #: erpnext/selling/doctype/sales_order/sales_order.js:1475 -#: erpnext/setup/doctype/company/company.py:454 +#: erpnext/setup/doctype/company/company.py:456 msgid "Finished Goods" msgstr "" @@ -20891,7 +20935,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:900 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20920,7 +20964,7 @@ msgid "First Response Due" msgstr "" #: erpnext/support/doctype/issue/test_issue.py:238 -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:906 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:909 msgid "First Response SLA Failed by {}" msgstr "" @@ -20965,7 +21009,6 @@ msgstr "" #. Certificate' #. Label of the fiscal_year (Link) field in DocType 'Target Detail' #. Label of the fiscal_year (Data) field in DocType 'Stock Ledger Entry' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/fiscal_year/fiscal_year.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json @@ -20986,7 +21029,6 @@ msgstr "" #: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:15 #: erpnext/setup/doctype/target_detail/target_detail.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Fiscal Year" msgstr "" @@ -21004,7 +21046,7 @@ msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" #: erpnext/accounts/report/trial_balance/trial_balance.py:49 -#: erpnext/controllers/trends.py:59 +#: erpnext/controllers/trends.py:63 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -21048,7 +21090,7 @@ msgstr "" msgid "Fixed Asset Defaults" msgstr "" -#: erpnext/stock/doctype/item/item.py:374 +#: erpnext/stock/doctype/item/item.py:379 msgid "Fixed Asset Item must be a non-stock item." msgstr "" @@ -21173,7 +21215,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:395 +#: erpnext/public/js/utils/sales_common.js:393 msgid "For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table." msgstr "" @@ -21235,7 +21277,7 @@ msgstr "" msgid "For Raw Materials" msgstr "" -#: erpnext/controllers/accounts_controller.py:981 +#: erpnext/controllers/accounts_controller.py:908 msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}" msgstr "" @@ -21269,14 +21311,19 @@ msgstr "" #. Label of the warehouse (Link) field in DocType 'Material Request Plan Item' #. Label of the for_warehouse (Link) field in DocType 'Production Plan' #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:497 #: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:180 #: erpnext/selling/doctype/sales_order/sales_order.js:1488 -#: erpnext/stock/doctype/material_request/material_request.js:361 +#: erpnext/stock/doctype/material_request/material_request.js:362 #: erpnext/templates/form_grid/material_request_grid.html:36 msgid "For Warehouse" msgstr "" +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:167 +msgid "For Warehouse {0} must be a child of the group warehouse {1}." +msgstr "" + #: erpnext/public/js/utils/serial_no_batch_selector.js:136 msgid "For Work Order" msgstr "" @@ -21364,7 +21411,7 @@ msgstr "" msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:270 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21374,7 +21421,7 @@ msgstr "" msgid "For service item" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:178 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:196 msgid "For the 'Apply Rule On Other' condition the field {0} is mandatory" msgstr "" @@ -21383,7 +21430,7 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1234 +#: erpnext/stock/serial_batch_bundle.py:1240 msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." msgstr "" @@ -21396,7 +21443,7 @@ msgctxt "Clear payment terms template and/or payment schedule when due date is c msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:272 +#: erpnext/stock/services/serial_batch_bundle_service.py:274 msgid "For the {0}, no stock is available for the return in the warehouse {1}." msgstr "" @@ -21490,7 +21537,7 @@ msgstr "" msgid "Frappe CRM Allowed User" msgstr "" -#: erpnext/crm/frappe_crm_api.py:183 +#: erpnext/crm/frappe_crm_api.py:186 msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." msgstr "" @@ -21526,7 +21573,7 @@ msgstr "" msgid "Free On Board" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:283 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:301 msgid "Free item code is not selected" msgstr "" @@ -21605,7 +21652,7 @@ msgstr "" msgid "From Date and To Date are Mandatory" msgstr "" -#: erpnext/accounts/report/financial_statements.py:138 +#: erpnext/accounts/report/financial_statements.py:315 msgid "From Date and To Date are mandatory" msgstr "" @@ -21613,7 +21660,7 @@ msgstr "" msgid "From Date and To Date are required" msgstr "" -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:30 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:40 msgid "From Date and To Date lie in different Fiscal Year" msgstr "" @@ -21636,9 +21683,9 @@ msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:86 #: erpnext/accounts/report/pos_register/pos_register.py:124 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:32 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:25 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:34 -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:38 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:35 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:39 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:49 msgid "From Date must be before To Date" msgstr "" @@ -21745,7 +21792,7 @@ msgstr "" msgid "From Range" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:95 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:97 msgid "From Range has to be less than To Range" msgstr "" @@ -21998,13 +22045,13 @@ msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1232 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1234 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179 msgid "Future Payment Amount" msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1231 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 msgid "Future Payment Ref" msgstr "" @@ -22095,7 +22142,7 @@ msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:138 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:225 -#: erpnext/setup/doctype/company/company.py:751 +#: erpnext/setup/doctype/company/company.py:753 msgid "Gain/Loss on Asset Disposal" msgstr "" @@ -22162,7 +22209,10 @@ msgstr "" msgid "General Ledger requires {0} to be synced to DuckDB" msgstr "" +#. Label of the general_settings_section (Section Break) field in DocType +#. 'Global Defaults' #. Label of the gs (Section Break) field in DocType 'Item Group' +#: erpnext/setup/doctype/global_defaults/global_defaults.json #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" msgstr "Obecná nastavení" @@ -22274,7 +22324,7 @@ msgstr "" msgid "Get Current Stock" msgstr "" -#: erpnext/selling/doctype/customer/customer.js:190 +#: erpnext/selling/doctype/customer/customer.js:199 msgid "Get Customer Group Details" msgstr "" @@ -22338,15 +22388,15 @@ msgstr "" #: erpnext/selling/doctype/sales_order/sales_order.js:1254 #: erpnext/stock/doctype/delivery_note/delivery_note.js:187 #: erpnext/stock/doctype/delivery_note/delivery_note.js:239 -#: erpnext/stock/doctype/material_request/material_request.js:141 -#: erpnext/stock/doctype/material_request/material_request.js:238 +#: erpnext/stock/doctype/material_request/material_request.js:144 +#: erpnext/stock/doctype/material_request/material_request.js:241 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:144 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:244 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:461 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:508 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:541 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:632 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:800 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:460 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:507 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:540 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:631 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:799 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:165 msgid "Get Items From" msgstr "" @@ -22361,9 +22411,9 @@ msgstr "" msgid "Get Items for Purchase Only" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:346 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:836 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:849 +#: erpnext/stock/doctype/material_request/material_request.js:347 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:835 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:848 msgid "Get Items from BOM" msgstr "" @@ -22447,7 +22497,7 @@ msgstr "" msgid "Get Started Sections" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:552 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:579 msgid "Get Stock" msgstr "" @@ -22457,7 +22507,7 @@ msgstr "" msgid "Get Sub Assembly Items" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:151 +#: erpnext/buying/doctype/supplier/supplier.js:160 msgid "Get Supplier Group Details" msgstr "" @@ -22549,7 +22599,7 @@ msgstr "" msgid "Goods" msgstr "" -#: erpnext/setup/doctype/company/company.py:455 +#: erpnext/setup/doctype/company/company.py:457 #: erpnext/stock/doctype/stock_entry/stock_entry_list.js:34 msgid "Goods In Transit" msgstr "" @@ -22558,7 +22608,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1348 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22789,7 +22839,7 @@ msgstr "" #. Label of the gross_profit (Currency) field in DocType 'Sales Order Item' #. Label of a Workspace Sidebar Item #: erpnext/accounts/report/gross_profit/gross_profit.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:375 +#: erpnext/accounts/report/gross_profit/gross_profit.py:377 #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -22801,7 +22851,7 @@ msgstr "" msgid "Gross Profit / Loss" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:382 +#: erpnext/accounts/report/gross_profit/gross_profit.py:384 msgid "Gross Profit Percent" msgstr "" @@ -22860,6 +22910,12 @@ msgstr "" msgid "Group by" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 +#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +msgid "Group by Dimension" +msgstr "" + #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:61 msgid "Group by Material Request" msgstr "" @@ -22910,8 +22966,8 @@ msgstr "" msgid "Groups" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:32 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:32 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:39 msgid "Growth View" msgstr "" @@ -22969,7 +23025,7 @@ msgstr "" #: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:72 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:77 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:59 -#: erpnext/public/js/financial_statements.js:456 +#: erpnext/public/js/financial_statements.js:493 #: erpnext/public/js/purchase_trends_filters.js:21 #: erpnext/public/js/sales_trends_filters.js:13 #: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:34 @@ -23184,7 +23240,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2142 +#: erpnext/stock/stock_ledger.py:2190 msgid "Here are the options to proceed:" msgstr "" @@ -23212,7 +23268,7 @@ msgstr "Zde jsou vaše pravidelné volné dny předvyplněny podle předchozích msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:615 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:764 msgid "Hi," msgstr "" @@ -23227,8 +23283,7 @@ msgstr "" msgid "Hidden list maintaining the list of contacts linked to Shareholder" msgstr "" -#. Label of the hide_currency_symbol (Select) field in DocType 'Global -#. Defaults' +#. Label of the hide_currency_symbol (Check) field in DocType 'Global Defaults' #: erpnext/setup/doctype/global_defaults/global_defaults.json msgid "Hide Currency Symbol" msgstr "" @@ -23416,7 +23471,7 @@ msgstr "" msgid "Hrs" msgstr "" -#: erpnext/setup/doctype/company/company.py:561 +#: erpnext/setup/doctype/company/company.py:563 msgid "Human Resources" msgstr "" @@ -23590,6 +23645,23 @@ msgstr "" msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount" msgstr "" +#. Description of the 'Restrict to Companies' (Check) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "If checked, this Customer is only available for transactions in the companies listed below." +msgstr "" + +#. Description of the 'Restrict to Companies' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If checked, this Item is only available for transactions in the companies listed below." +msgstr "" + +#. Description of the 'Restrict to Companies' (Check) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "If checked, this Supplier is only available for transactions in the companies listed below." +msgstr "" + #. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in #. DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -23848,15 +23920,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2152 +#: erpnext/stock/stock_ledger.py:2200 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:201 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:202 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23885,7 +23957,7 @@ msgstr "" msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1276 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1287 msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected." msgstr "" @@ -23894,7 +23966,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2145 +#: erpnext/stock/stock_ledger.py:2193 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23904,7 +23976,7 @@ msgstr "" msgid "If the reorder check is set at the Group warehouse level, the available quantity becomes the sum of the projected quantities of all its child warehouses." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1295 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1306 msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed." msgstr "" @@ -23981,7 +24053,7 @@ msgstr "" msgid "If yes, then this warehouse will be used to store rejected materials" msgstr "" -#: erpnext/stock/doctype/item/item.js:1568 +#: erpnext/stock/doctype/item/item.js:1589 msgid "If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item." msgstr "" @@ -23995,7 +24067,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:475 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24162,7 +24234,7 @@ msgstr "" msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports" msgstr "" -#: erpnext/stock/doctype/item/item.py:269 +#: erpnext/stock/doctype/item/item.py:274 msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}." msgstr "" @@ -24327,13 +24399,13 @@ msgid "In Production" msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:112 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/stock_balance/stock_balance.py:547 #: erpnext/stock/report/stock_ledger/stock_ledger.py:317 msgid "In Qty" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:659 +#: erpnext/public/js/templates/shop_floor_template.html:679 msgid "In Queue" msgstr "" @@ -24351,11 +24423,11 @@ msgstr "" msgid "In Transit" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:477 +#: erpnext/stock/doctype/material_request/material_request.js:478 msgid "In Transit Transfer" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:446 +#: erpnext/stock/doctype/material_request/material_request.js:447 msgid "In Transit Warehouse" msgstr "" @@ -24445,7 +24517,7 @@ msgstr "" msgid "In row {0} of Appointment Booking Slots: \"To Time\" must be later than \"From Time\"." msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:815 +#: erpnext/public/js/templates/shop_floor_template.html:835 msgid "In source" msgstr "" @@ -24462,7 +24534,7 @@ msgstr "" msgid "In this case, the amount will be calculated as 25% of the transaction amount. If the transaction amount is 200, then this will be calculated as 200 * 0.25 = 50." msgstr "" -#: erpnext/stock/doctype/item/item.js:1601 +#: erpnext/stock/doctype/item/item.js:1622 msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc." msgstr "" @@ -24542,13 +24614,13 @@ msgstr "" msgid "Include Default FB Assets" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:45 -#: erpnext/accounts/report/cash_flow/cash_flow.js:37 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:52 +#: erpnext/accounts/report/cash_flow/cash_flow.js:44 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:131 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:85 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:29 #: erpnext/accounts/report/general_ledger/general_ledger.js:193 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:46 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:53 #: erpnext/accounts/report/trial_balance/trial_balance.js:105 msgid "Include Default FB Entries" msgstr "" @@ -24704,8 +24776,8 @@ msgstr "" #: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 -#: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 +#: erpnext/accounts/report/financial_statements.py:1004 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:204 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24731,6 +24803,10 @@ msgstr "" msgid "Income Account" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:86 +msgid "Income Account Validation Error" +msgstr "" + #. Label of the income_and_expense_account (Section Break) field in DocType #. 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -24742,7 +24818,9 @@ msgstr "" msgid "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront." msgstr "" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Incoming Bills" msgstr "" @@ -24757,7 +24835,9 @@ msgstr "" msgid "Incoming Call Settings" msgstr "" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Incoming Payment" msgstr "" @@ -24787,7 +24867,7 @@ msgstr "" msgid "Incoming call from {0}" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:115 msgid "Incompatible Setting Detected" msgstr "" @@ -24804,7 +24884,7 @@ msgstr "" msgid "Incorrect Batch Consumed" msgstr "" -#: erpnext/stock/doctype/item/item.py:604 +#: erpnext/stock/doctype/item/item.py:609 msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" @@ -24921,7 +25001,7 @@ msgstr "" msgid "Increment" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:98 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:100 msgid "Increment cannot be 0" msgstr "" @@ -25025,7 +25105,7 @@ msgstr "" msgid "Initiated" msgstr "Zahájeno" -#: erpnext/public/js/shop_floor/shop_floor.js:964 +#: erpnext/public/js/shop_floor/shop_floor.js:1000 msgid "Inspect {0} for job card {1}" msgstr "" @@ -25037,7 +25117,7 @@ msgid "Inspected By" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:892 -#: erpnext/public/js/shop_floor/shop_floor.js:1002 +#: erpnext/public/js/shop_floor/shop_floor.js:1038 #: erpnext/stock/services/quality_inspection_service.py:147 msgid "Inspection Rejected" msgstr "" @@ -25092,7 +25172,7 @@ msgstr "" msgid "Installation Note Item" msgstr "" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:623 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:640 msgid "Installation Note {0} has already been submitted" msgstr "" @@ -25133,22 +25213,22 @@ msgstr "" #: erpnext/accounts/services/child_item_update.py:213 #: erpnext/accounts/services/child_item_update.py:235 -#: erpnext/controllers/accounts_controller.py:1734 -#: erpnext/controllers/accounts_controller.py:1740 -#: erpnext/controllers/accounts_controller.py:1762 +#: erpnext/controllers/accounts_controller.py:1661 +#: erpnext/controllers/accounts_controller.py:1667 +#: erpnext/controllers/accounts_controller.py:1689 msgid "Insufficient Permissions" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:466 #: erpnext/stock/doctype/pick_list/pick_list.py:148 #: erpnext/stock/doctype/pick_list/pick_list.py:166 -#: erpnext/stock/doctype/pick_list/pick_list.py:1118 -#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1827 -#: erpnext/stock/stock_ledger.py:2334 +#: erpnext/stock/doctype/pick_list/pick_list.py:1139 +#: erpnext/stock/serial_batch_bundle.py:1243 erpnext/stock/stock_ledger.py:1875 +#: erpnext/stock/stock_ledger.py:2382 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2397 msgid "Insufficient Stock for Batch" msgstr "" @@ -25278,7 +25358,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2727 msgid "Interest and/or dunning fee" msgstr "" @@ -25303,7 +25383,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:259 +#: erpnext/selling/doctype/customer/customer.py:271 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25329,7 +25409,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:181 +#: erpnext/buying/doctype/supplier/supplier.py:190 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25390,8 +25470,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:381 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:770 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:780 #: erpnext/accounts/services/taxes.py:271 #: erpnext/accounts/services/taxes.py:279 #: erpnext/assets/doctype/asset_category/asset_category.py:69 @@ -25404,7 +25484,7 @@ msgid "Invalid Accounting Dimension" msgstr "Neplatná účetní dimenze" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:402 -#: erpnext/accounts/doctype/payment_request/payment_request.py:1166 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1167 msgid "Invalid Allocated Amount" msgstr "" @@ -25416,11 +25496,11 @@ msgstr "Neplatná částka" msgid "Invalid Attribute" msgstr "" -#: erpnext/stock/doctype/item/item.js:1195 +#: erpnext/stock/doctype/item/item.js:1216 msgid "Invalid Attribute Values" msgstr "" -#: erpnext/controllers/accounts_controller.py:530 +#: erpnext/controllers/accounts_controller.py:515 msgid "Invalid Auto Repeat Date" msgstr "" @@ -25453,7 +25533,7 @@ msgstr "" msgid "Invalid Company for Inter Company Transaction." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:972 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:978 msgid "Invalid Configuration" msgstr "" @@ -25463,7 +25543,7 @@ msgstr "" msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:372 +#: erpnext/selling/doctype/customer/customer.py:386 msgid "Invalid Customer Group" msgstr "" @@ -25518,7 +25598,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1566 +#: erpnext/stock/doctype/item/item.py:1571 msgid "Invalid Item Defaults" msgstr "" @@ -25579,7 +25659,7 @@ msgstr "" msgid "Invalid Qty" msgstr "" -#: erpnext/controllers/accounts_controller.py:999 +#: erpnext/controllers/accounts_controller.py:926 msgid "Invalid Quantity" msgstr "" @@ -25604,7 +25684,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:962 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:975 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25621,7 +25701,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:202 +#: erpnext/controllers/item_variant.py:264 msgid "Invalid Value" msgstr "" @@ -25634,7 +25714,7 @@ msgstr "" msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:330 msgid "Invalid condition expression" msgstr "" @@ -25657,11 +25737,11 @@ msgstr "" msgid "Invalid lost reason {0}, please create a new lost reason" msgstr "" -#: erpnext/stock/doctype/item/item.py:478 +#: erpnext/stock/doctype/item/item.py:483 msgid "Invalid naming series (. missing) for {0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:730 +#: erpnext/accounts/doctype/payment_request/payment_request.py:731 msgid "Invalid parameter. 'dn' should be of type str" msgstr "" @@ -25681,11 +25761,11 @@ msgstr "" msgid "Invalid search query" msgstr "" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:313 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:314 msgid "Invalid status group: {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1661 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1703 msgid "Invalid subcontract order field: {0}" msgstr "" @@ -25826,7 +25906,7 @@ msgstr "" msgid "Invoice Document Type Selection Error" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 msgid "Invoice Grand Total" msgstr "" @@ -25931,7 +26011,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:171 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:139 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:140 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:166 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:194 msgid "Invoiced Amount" @@ -25952,7 +26032,7 @@ msgstr "" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1204 #: erpnext/accounts/report/accounts_payable/accounts_payable.js:270 #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:64 @@ -25991,11 +26071,6 @@ msgstr "" msgid "Inward" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Inward Order" -msgstr "" - #. Label of the is_account_payable (Check) field in DocType 'Cheque Print #. Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json @@ -26568,7 +26643,7 @@ msgstr "" msgid "Issue Date" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:180 +#: erpnext/stock/doctype/material_request/material_request.js:183 msgid "Issue Material" msgstr "" @@ -26642,7 +26717,7 @@ msgstr "" msgid "Issuing Date" msgstr "" -#: erpnext/stock/doctype/item/item.py:649 +#: erpnext/stock/doctype/item/item.py:654 msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" @@ -26710,8 +26785,9 @@ msgstr "" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json #: erpnext/controllers/taxes_and_totals.py:1246 +#: erpnext/controllers/trends.py:385 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/bom/bom.js:1088 +#: erpnext/manufacturing/doctype/bom/bom.js:1092 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:25 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:101 @@ -26744,7 +26820,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 -#: erpnext/stock/doctype/stock_settings/stock_settings.js:149 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:131 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:7 @@ -26753,7 +26829,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:93 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js:24 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:32 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:76 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 #: erpnext/stock/report/item_price_stock/item_price_stock.js:8 #: erpnext/stock/report/item_prices/item_prices.py:50 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:88 @@ -26788,8 +26864,6 @@ msgstr "" #: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/manufacturing.json #: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json -#: erpnext/workspace_sidebar/subcontracting.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Item" msgstr "" @@ -26968,7 +27042,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:314 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:68 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:37 -#: erpnext/accounts/report/gross_profit/gross_profit.py:312 +#: erpnext/accounts/report/gross_profit/gross_profit.py:314 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:148 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:167 #: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:37 @@ -27019,11 +27093,11 @@ msgstr "" #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 -#: erpnext/projects/doctype/timesheet/timesheet.js:214 +#: erpnext/projects/doctype/timesheet/timesheet.js:216 #: erpnext/public/js/controllers/transaction.js:2951 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 -#: erpnext/public/js/utils.js:753 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:608 +#: erpnext/public/js/utils.js:765 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -27223,7 +27297,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/gross_profit/gross_profit.js:44 -#: erpnext/accounts/report/gross_profit/gross_profit.py:325 +#: erpnext/accounts/report/gross_profit/gross_profit.py:327 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:21 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:29 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:28 @@ -27238,6 +27312,7 @@ msgstr "" #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:30 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:40 #: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/trends.py:398 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json @@ -27273,7 +27348,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/page/stock_balance/stock_balance.js:35 -#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:43 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:54 #: erpnext/stock/report/delayed_item_report/delayed_item_report.js:48 #: erpnext/stock/report/delayed_order_report/delayed_order_report.js:48 #: erpnext/stock/report/item_prices/item_prices.py:52 @@ -27307,15 +27382,15 @@ msgstr "" msgid "Item Group Name" msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:119 +#: erpnext/setup/doctype/item_group/item_group.js:136 msgid "Item Group Override" msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:82 +#: erpnext/setup/doctype/item_group/item_group.js:99 msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:541 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27458,7 +27533,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:74 #: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:71 -#: erpnext/accounts/report/gross_profit/gross_profit.py:319 +#: erpnext/accounts/report/gross_profit/gross_profit.py:321 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:34 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:154 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:173 @@ -27476,6 +27551,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:34 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:206 +#: erpnext/controllers/trends.py:386 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:101 #: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json @@ -27509,7 +27585,7 @@ msgstr "" #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 #: erpnext/public/js/controllers/transaction.js:2957 -#: erpnext/public/js/utils.js:844 +#: erpnext/public/js/utils.js:856 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27539,7 +27615,7 @@ msgstr "" #: erpnext/stock/report/available_batch_report/available_batch_report.py:32 #: erpnext/stock/report/available_serial_no/available_serial_no.py:99 #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:33 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:77 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:153 #: erpnext/stock/report/item_price_stock/item_price_stock.py:24 #: erpnext/stock/report/item_prices/item_prices.py:51 @@ -27613,8 +27689,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1182 -#: erpnext/stock/get_item_details.py:1206 +#: erpnext/stock/get_item_details.py:1181 +#: erpnext/stock/get_item_details.py:1205 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27622,11 +27698,11 @@ msgstr "" msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates." msgstr "" -#: erpnext/stock/doctype/item/item.py:183 +#: erpnext/stock/doctype/item/item.py:187 msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1165 +#: erpnext/stock/get_item_details.py:1164 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27690,7 +27766,9 @@ msgid "Item Shortage Report" msgstr "" #. Name of a DocType +#. Label of a Link in the Stock Workspace #: erpnext/stock/doctype/item_standard_cost/item_standard_cost.json +#: erpnext/stock/workspace/stock/stock.json msgid "Item Standard Cost" msgstr "" @@ -27767,7 +27845,6 @@ msgstr "" #. Label of the item_tax_template (Link) field in DocType 'Item Tax' #. Label of the item_tax_template (Link) field in DocType 'Purchase Receipt #. Item' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/item_tax_template/item_tax_template.json #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -27780,7 +27857,6 @@ msgstr "" #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/item_tax/item_tax.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/workspace_sidebar/taxes.json msgid "Item Tax Template" msgstr "" @@ -27817,7 +27893,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item -#: erpnext/stock/doctype/item/item.js:235 +#: erpnext/stock/doctype/item/item.js:250 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/erpnext_settings.json @@ -27825,11 +27901,11 @@ msgstr "" msgid "Item Variant Settings" msgstr "" -#: erpnext/stock/doctype/item/item.js:1417 +#: erpnext/stock/doctype/item/item.js:1438 msgid "Item Variant {0} already exists with same attributes" msgstr "" -#: erpnext/stock/doctype/item/item.py:840 +#: erpnext/stock/doctype/item/item.py:845 msgid "Item Variants updated" msgstr "" @@ -27937,7 +28013,7 @@ msgstr "" msgid "Item for row {0} does not match Material Request" msgstr "" -#: erpnext/stock/doctype/item/item.py:899 +#: erpnext/stock/doctype/item/item.py:904 msgid "Item has variants." msgstr "" @@ -27963,10 +28039,14 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:622 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:635 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" +#: erpnext/stock/doctype/material_request/material_request.py:231 +msgid "Item rates have been updated based on the selected Buying Price List {0}" +msgstr "" + #. Label of the item (Link) field in DocType 'BOM' #. Label of the finished_good (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/bom/bom.json @@ -27982,7 +28062,7 @@ msgstr "" msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" -#: erpnext/stock/doctype/item/item.py:1056 +#: erpnext/stock/doctype/item/item.py:1061 msgid "Item variant {0} exists with same attributes" msgstr "" @@ -28007,7 +28087,7 @@ msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:347 -#: erpnext/stock/doctype/item/item.py:695 +#: erpnext/stock/doctype/item/item.py:700 msgid "Item {0} does not exist" msgstr "" @@ -28016,7 +28096,7 @@ msgid "Item {0} does not exist in the system or has expired" msgstr "" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1489 -#: erpnext/stock/services/serial_batch_bundle_service.py:388 +#: erpnext/stock/services/serial_batch_bundle_service.py:390 msgid "Item {0} does not exist." msgstr "" @@ -28040,15 +28120,15 @@ msgstr "" msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity." msgstr "" -#: erpnext/stock/doctype/item/item.py:1278 +#: erpnext/stock/doctype/item/item.py:1283 msgid "Item {0} has reached its end of life on {1}" msgstr "" -#: erpnext/stock/stock_ledger.py:164 +#: erpnext/stock/stock_ledger.py:168 msgid "Item {0} ignored since it is not a stock item" msgstr "" -#: erpnext/stock/get_item_details.py:357 +#: erpnext/stock/get_item_details.py:356 msgid "Item {0} is a template, please select one of its variants" msgstr "" @@ -28056,11 +28136,11 @@ msgstr "" msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1298 +#: erpnext/stock/doctype/item/item.py:1303 msgid "Item {0} is cancelled" msgstr "" -#: erpnext/stock/doctype/item/item.py:1282 +#: erpnext/stock/doctype/item/item.py:1287 msgid "Item {0} is disabled" msgstr "" @@ -28072,7 +28152,7 @@ msgstr "" msgid "Item {0} is not a serialized Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1290 +#: erpnext/stock/doctype/item/item.py:1295 msgid "Item {0} is not a stock Item" msgstr "" @@ -28080,11 +28160,11 @@ msgstr "" msgid "Item {0} is not a subcontracted item" msgstr "" -#: erpnext/stock/doctype/item/item.py:857 +#: erpnext/stock/doctype/item/item.py:862 msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1258 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1271 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -28092,7 +28172,7 @@ msgstr "" msgid "Item {0} must be a Fixed Asset Item" msgstr "" -#: erpnext/stock/get_item_details.py:363 +#: erpnext/stock/get_item_details.py:362 msgid "Item {0} must be a Non-Stock Item" msgstr "" @@ -28108,11 +28188,11 @@ msgstr "" msgid "Item {0} not found." msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:315 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:316 msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:573 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:600 msgid "Item {0}: {1} qty produced. " msgstr "" @@ -28158,7 +28238,7 @@ msgstr "" msgid "Item-wise sales Register" msgstr "" -#: erpnext/stock/get_item_details.py:767 +#: erpnext/stock/get_item_details.py:766 msgid "Item/Item Code required to get Item Tax Template." msgstr "" @@ -28186,16 +28266,11 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:218 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Items To Be Received" -msgstr "" - #. Label of a Link in the Buying Workspace #. Name of a report #. Label of a Workspace Sidebar Item @@ -28226,7 +28301,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:618 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:631 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -28236,7 +28311,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:217 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28349,7 +28424,7 @@ msgstr "" msgid "Job Card Secondary Item" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1032 +#: erpnext/public/js/shop_floor/shop_floor.js:1068 msgid "Job Card Submitted" msgstr "" @@ -28377,20 +28452,20 @@ msgstr "" msgid "Job Card {0} has been completed" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1435 +#: erpnext/public/js/shop_floor/shop_floor.js:1470 msgid "Job Card {0} is already running. Open its machine or work order to pause or complete it." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1430 -#: erpnext/public/js/shop_floor/shop_floor.js:1451 +#: erpnext/public/js/shop_floor/shop_floor.js:1465 +#: erpnext/public/js/shop_floor/shop_floor.js:1486 msgid "Job Card {0} is already submitted." msgstr "" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:186 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:188 msgid "Job Card {0} not found" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1426 +#: erpnext/public/js/shop_floor/shop_floor.js:1461 msgid "Job Card {0} was not found." msgstr "" @@ -28464,7 +28539,7 @@ msgstr "" msgid "Job card {0} created" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1039 +#: erpnext/public/js/shop_floor/shop_floor.js:1075 msgid "Job card {0} has been submitted." msgstr "" @@ -28476,7 +28551,7 @@ msgstr "" msgid "Job started" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1474 +#: erpnext/public/js/shop_floor/shop_floor.js:1509 msgid "Job {0} is running" msgstr "" @@ -28499,11 +28574,11 @@ msgstr "" msgid "Joule/Meter" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:30 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:31 msgid "Journal Entries" msgstr "" -#: erpnext/accounts/utils.py:1073 +#: erpnext/accounts/utils.py:1074 msgid "Journal Entries {0} are un-linked" msgstr "" @@ -28527,8 +28602,8 @@ msgstr "" #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html:10 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/assets/doctype/asset/asset.js:390 -#: erpnext/assets/doctype/asset/asset.js:399 +#: erpnext/assets/doctype/asset/asset.js:398 +#: erpnext/assets/doctype/asset/asset.js:407 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json @@ -28545,10 +28620,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Journal Entry Template" msgstr "" @@ -28562,7 +28635,7 @@ msgstr "" msgid "Journal Entry Type" msgstr "" -#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:190 +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:191 msgid "Journal Entry for Asset scrapping cannot be cancelled. Please restore the Asset." msgstr "" @@ -28583,7 +28656,7 @@ msgstr "" msgid "Journal Template Accounts" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:97 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:107 msgid "Journal entries have been created" msgstr "" @@ -28738,7 +28811,7 @@ msgstr "" msgid "Landed Cost Help" msgstr "" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:18 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:20 msgid "Landed Cost Id" msgstr "" @@ -28825,7 +28898,7 @@ msgstr "" msgid "Last Fiscal Year" msgstr "" -#: erpnext/accounts/doctype/account/account.py:673 +#: erpnext/accounts/doctype/account/account.py:680 msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" @@ -29079,7 +29152,7 @@ msgstr "" msgid "Leave Encashed?" msgstr "" -#: erpnext/stock/doctype/item/item.js:976 +#: erpnext/stock/doctype/item/item.js:997 msgid "Leave as 0 to allow zero valuation rate." msgstr "" @@ -29156,11 +29229,11 @@ msgstr "" msgid "Left Index" msgstr "" -#: erpnext/stock/doctype/item/item.js:398 +#: erpnext/stock/doctype/item/item.js:413 msgid "Left column shows inherited defaults (Item Group → Company / Stock Settings). Right column is where you set overrides for this item only." msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:136 +#: erpnext/setup/doctype/item_group/item_group.js:153 msgid "Left column shows system-level defaults (Company / Stock Settings). Right column is where you set overrides for this item group." msgstr "" @@ -29220,7 +29293,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:273 msgid "Liabilities" msgstr "" @@ -29307,11 +29380,11 @@ msgstr "" msgid "Link to Material Requests" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:164 +#: erpnext/buying/doctype/supplier/supplier.js:173 msgid "Link with Customer" msgstr "" -#: erpnext/selling/doctype/customer/customer.js:203 +#: erpnext/selling/doctype/customer/customer.js:212 msgid "Link with Supplier" msgstr "" @@ -29332,20 +29405,20 @@ msgstr "" msgid "Linked Location" msgstr "" -#: erpnext/stock/doctype/item/item.py:1132 +#: erpnext/stock/doctype/item/item.py:1137 msgid "Linked with submitted documents" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:251 -#: erpnext/selling/doctype/customer/customer.js:283 +#: erpnext/buying/doctype/supplier/supplier.js:260 +#: erpnext/selling/doctype/customer/customer.js:292 msgid "Linking Failed" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:250 +#: erpnext/buying/doctype/supplier/supplier.js:259 msgid "Linking to Customer Failed. Please try again." msgstr "" -#: erpnext/selling/doctype/customer/customer.js:282 +#: erpnext/selling/doctype/customer/customer.js:291 msgid "Linking to Supplier failed. Please try again." msgstr "" @@ -29378,7 +29451,7 @@ msgstr "" msgid "Loading Invoices! Please Wait..." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:900 +#: erpnext/public/js/shop_floor/shop_floor.js:936 msgid "Loading quality checklist..." msgstr "" @@ -29465,7 +29538,7 @@ msgstr "" msgid "Longitude" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:1051 +#: erpnext/public/js/templates/shop_floor_template.html:1071 msgid "Loss" msgstr "" @@ -29521,7 +29594,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:602 +#: erpnext/public/js/utils/sales_common.js:600 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29690,7 +29763,7 @@ msgstr "" #: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js:23 #: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:78 #: erpnext/public/js/plant_floor_visual/visual_plant.js:86 -#: erpnext/public/js/shop_floor/shop_floor.js:189 +#: erpnext/public/js/shop_floor/shop_floor.js:217 msgid "Machine" msgstr "" @@ -29708,10 +29781,10 @@ msgstr "" msgid "Machine operator errors" msgstr "" -#: erpnext/setup/doctype/company/company.py:789 -#: erpnext/setup/doctype/company/company.py:804 -#: erpnext/setup/doctype/company/company.py:805 +#: erpnext/setup/doctype/company/company.py:791 #: erpnext/setup/doctype/company/company.py:806 +#: erpnext/setup/doctype/company/company.py:807 +#: erpnext/setup/doctype/company/company.py:808 msgid "Main" msgstr "" @@ -29958,8 +30031,8 @@ msgstr "" #. Label of the make (Data) field in DocType 'Vehicle' #: erpnext/accounts/doctype/journal_entry/journal_entry.js:271 #: erpnext/manufacturing/doctype/job_card/job_card.js:479 -#: erpnext/manufacturing/doctype/work_order/work_order.js:860 -#: erpnext/manufacturing/doctype/work_order/work_order.js:894 +#: erpnext/manufacturing/doctype/work_order/work_order.js:864 +#: erpnext/manufacturing/doctype/work_order/work_order.js:898 #: erpnext/setup/doctype/vehicle/vehicle.json msgid "Make" msgstr "" @@ -29979,7 +30052,7 @@ msgstr "" msgid "Make Difference Entry" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1048 +#: erpnext/public/js/shop_floor/shop_floor.js:1084 msgid "Make Manufacture Entry" msgstr "" @@ -30018,7 +30091,7 @@ msgid "Make Serial No / Batch from Work Order" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:106 -#: erpnext/public/js/templates/shop_floor_template.html:926 +#: erpnext/public/js/templates/shop_floor_template.html:946 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256 msgid "Make Stock Entry" msgstr "" @@ -30035,11 +30108,11 @@ msgstr "Uskutečnit hovor" msgid "Make project from a template." msgstr "" -#: erpnext/stock/doctype/item/item.js:1212 +#: erpnext/stock/doctype/item/item.js:1233 msgid "Make {0} Variant" msgstr "" -#: erpnext/stock/doctype/item/item.js:1213 +#: erpnext/stock/doctype/item/item.js:1234 msgid "Make {0} Variants" msgstr "" @@ -30062,7 +30135,7 @@ msgstr "" msgid "Manage your orders" msgstr "" -#: erpnext/setup/doctype/company/company.py:567 +#: erpnext/setup/doctype/company/company.py:569 msgid "Management" msgstr "" @@ -30177,8 +30250,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:721 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:738 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:734 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:751 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30399,7 +30472,7 @@ msgstr "" msgid "Manufacturing Variance Account" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:67 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:72 msgid "Manufacturing Variance for {0}" msgstr "" @@ -30411,7 +30484,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1075 +#: erpnext/public/js/utils.js:1087 msgid "Mapping {0} ..." msgstr "" @@ -30422,13 +30495,6 @@ msgstr "" msgid "Maps To" msgstr "" -#. Label of the margin (Section Break) field in DocType 'Pricing Rule' -#. Label of the margin (Section Break) field in DocType 'Project' -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/projects/doctype/project/project.json -msgid "Margin" -msgstr "" - #. Label of the margin_money (Currency) field in DocType 'Bank Guarantee' #: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json msgid "Margin Money" @@ -30490,7 +30556,7 @@ msgstr "" msgid "Margin Type" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:33 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 msgid "Margin View" msgstr "" @@ -30524,7 +30590,7 @@ msgstr "" msgid "Market Segment" msgstr "" -#: erpnext/setup/doctype/company/company.py:519 +#: erpnext/setup/doctype/company/company.py:521 msgid "Marketing" msgstr "" @@ -30607,7 +30673,7 @@ msgstr "" msgid "Material" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:885 +#: erpnext/manufacturing/doctype/work_order/work_order.js:889 msgid "Material Consumption" msgstr "" @@ -30615,12 +30681,12 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:722 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:735 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:688 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:687 msgid "Material Consumption is not set in Manufacturing Settings." msgstr "" @@ -30650,7 +30716,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:77 -#: erpnext/stock/doctype/material_request/material_request.js:188 +#: erpnext/stock/doctype/material_request/material_request.js:191 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Receipt" @@ -30697,26 +30763,27 @@ msgstr "" #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:186 #: erpnext/buying/workspace/buying/buying.json #: erpnext/manufacturing/doctype/job_card/job_card.js:216 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:185 #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:825 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/selling/doctype/sales_order/sales_order.js:1130 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:37 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:437 -#: erpnext/stock/doctype/material_request/material_request.py:454 +#: erpnext/stock/doctype/material_request/material_request.py:476 +#: erpnext/stock/doctype/material_request/material_request.py:493 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:309 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:465 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:308 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:464 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:153 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:135 #: erpnext/stock/workspace/stock/stock.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json @@ -30802,7 +30869,7 @@ msgstr "" msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:149 +#: erpnext/stock/doctype/material_request/material_request.py:150 msgid "Material Request of maximum {0} can be made for Item {1} against Sales Order {2}" msgstr "" @@ -30870,7 +30937,7 @@ msgstr "" #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json #: erpnext/setup/setup_wizard/operations/install_fixtures.py:83 #: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/material_request/material_request.js:166 +#: erpnext/stock/doctype/material_request/material_request.js:169 #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -30878,7 +30945,7 @@ msgstr "" msgid "Material Transfer" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:172 +#: erpnext/stock/doctype/material_request/material_request.js:175 msgid "Material Transfer (In Transit)" msgstr "" @@ -30927,19 +30994,14 @@ msgstr "" msgid "Material to Supplier" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:788 +#: erpnext/public/js/templates/shop_floor_template.html:808 msgid "Materials" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:966 +#: erpnext/public/js/templates/shop_floor_template.html:986 msgid "Materials Ready" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Materials To Be Transferred" -msgstr "" - #: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" @@ -31012,15 +31074,15 @@ msgstr "" msgid "Max Score" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:292 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:310 msgid "Max discount allowed for item: {0} is {1}%" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1061 -#: erpnext/manufacturing/doctype/work_order/work_order.js:1068 -#: erpnext/manufacturing/doctype/work_order/work_order.js:1091 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1065 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1072 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1095 #: erpnext/stock/doctype/pick_list/pick_list.js:208 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:404 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:403 msgid "Max: {0}" msgstr "" @@ -31081,7 +31143,7 @@ msgstr "" msgid "Maximum discount for Item {0} is {1}%" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:120 +#: erpnext/public/js/utils/barcode_scanner.js:125 msgid "Maximum quantity scanned for item {0}." msgstr "" @@ -31090,7 +31152,7 @@ msgstr "" msgid "Maximum sample quantity that can be retained" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:939 +#: erpnext/public/js/shop_floor/shop_floor.js:975 msgid "Measured value" msgstr "" @@ -31119,7 +31181,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2158 +#: erpnext/stock/stock_ledger.py:2206 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -31154,7 +31216,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1107 +#: erpnext/public/js/utils.js:1119 msgid "Merge taxes from multiple documents" msgstr "" @@ -31361,7 +31423,7 @@ msgstr "" msgid "Min Amt" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:228 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:246 msgid "Min Amt can not be greater than Max Amt" msgstr "" @@ -31394,15 +31456,15 @@ msgstr "" msgid "Min Qty (As Per Stock UOM)" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:224 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:242 msgid "Min Qty can not be greater than Max Qty" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:238 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:256 msgid "Min Qty should be greater than Recurse Over Qty" msgstr "" -#: erpnext/stock/doctype/item/item.js:1368 +#: erpnext/stock/doctype/item/item.js:1389 msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}" msgstr "" @@ -31496,7 +31558,7 @@ msgstr "" msgid "Miscellaneous Expenses" msgstr "" -#: erpnext/controllers/buying_controller.py:729 +#: erpnext/controllers/buying_controller.py:737 msgid "Mismatch" msgstr "" @@ -31542,7 +31604,7 @@ msgstr "" msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:897 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 msgid "Missing Finished Good" msgstr "" @@ -31558,7 +31620,7 @@ msgstr "" msgid "Missing Parameter" msgstr "" -#: erpnext/utilities/__init__.py:57 +#: erpnext/utilities/__init__.py:84 msgid "Missing Payments App" msgstr "" @@ -31566,7 +31628,7 @@ msgstr "" msgid "Missing Required Filter" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:297 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:300 msgid "Missing Serial No Bundle" msgstr "" @@ -31587,7 +31649,7 @@ msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:920 -#: erpnext/manufacturing/doctype/work_order/work_order.py:930 +#: erpnext/manufacturing/doctype/work_order/work_order.py:936 msgid "Missing value" msgstr "" @@ -31627,7 +31689,6 @@ msgstr "" #. Label of the mode_of_payment (Link) field in DocType 'Purchase Invoice' #. Label of the mode_of_payment (Link) field in DocType 'Sales Invoice Payment' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:234 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:433 #: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json @@ -31654,7 +31715,6 @@ msgstr "" #: erpnext/accounts/report/sales_register/sales_register.js:40 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/selling/page/point_of_sale/pos_controller.js:33 -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Mode of Payment" msgstr "" @@ -31789,7 +31849,7 @@ msgstr "" msgid "Move Stock" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1373 +#: erpnext/public/js/shop_floor/shop_floor.js:1408 msgid "Move selection" msgstr "" @@ -31840,7 +31900,7 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:443 +#: erpnext/selling/doctype/customer/customer.py:460 msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" @@ -31858,7 +31918,7 @@ msgstr "" msgid "Multiple Tier Program" msgstr "" -#: erpnext/stock/doctype/item/item.js:259 +#: erpnext/stock/doctype/item/item.js:274 msgid "Multiple Variants" msgstr "" @@ -31870,7 +31930,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:904 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:917 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31879,7 +31939,7 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:877 +#: erpnext/manufacturing/doctype/work_order/work_order.py:883 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 #: erpnext/utilities/transaction_base.py:627 @@ -31949,7 +32009,7 @@ msgstr "" msgid "Naming Series Prefix" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:95 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:96 msgid "Naming Series is mandatory" msgstr "" @@ -32021,8 +32081,8 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1656 -#: erpnext/stock/serial_batch_bundle.py:1588 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1657 +#: erpnext/stock/serial_batch_bundle.py:1594 msgid "Negative Stock Error" msgstr "" @@ -32109,40 +32169,40 @@ msgstr "" msgid "Net Asset value as on" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:186 +#: erpnext/accounts/report/cash_flow/cash_flow.py:202 msgid "Net Cash from Financing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:179 +#: erpnext/accounts/report/cash_flow/cash_flow.py:195 msgid "Net Cash from Investing" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:167 +#: erpnext/accounts/report/cash_flow/cash_flow.py:183 msgid "Net Cash from Operations" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:172 +#: erpnext/accounts/report/cash_flow/cash_flow.py:188 msgid "Net Change in Accounts Payable" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:171 +#: erpnext/accounts/report/cash_flow/cash_flow.py:187 msgid "Net Change in Accounts Receivable" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:138 -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:257 +#: erpnext/accounts/report/cash_flow/cash_flow.py:146 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:265 msgid "Net Change in Cash" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:188 +#: erpnext/accounts/report/cash_flow/cash_flow.py:204 msgid "Net Change in Equity" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:181 +#: erpnext/accounts/report/cash_flow/cash_flow.py:197 msgid "Net Change in Fixed Asset" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:173 +#: erpnext/accounts/report/cash_flow/cash_flow.py:189 msgid "Net Change in Inventory" msgstr "" @@ -32155,7 +32215,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:135 msgid "Net Profit" msgstr "" @@ -32163,7 +32223,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:208 msgid "Net Profit/Loss" msgstr "" @@ -32347,10 +32407,6 @@ msgstr "" msgid "New Asset Value" msgstr "" -#: erpnext/assets/dashboard_fixtures.py:169 -msgid "New Assets (This Year)" -msgstr "" - #. Label of the new_bom (Link) field in DocType 'BOM Update Log' #. Label of the new_bom (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom/bom_tree.js:62 @@ -32469,6 +32525,12 @@ msgstr "" msgid "New Sales Invoice" msgstr "" +#. Description of the 'Overdue Billing Threshold' (Currency) field in DocType +#. 'Customer Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "New Sales Invoices are blocked when the customer's overdue amount exceeds this. Requires 'Enable Overdue Billing Threshold' in Accounts Settings." +msgstr "" + #. Label of the sales_order (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid "New Sales Orders" @@ -32501,7 +32563,7 @@ msgstr "" msgid "New Workplace" msgstr "Nové pracoviště" -#: erpnext/selling/doctype/customer/customer.py:408 +#: erpnext/selling/doctype/customer/customer.py:425 msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" @@ -32588,7 +32650,7 @@ msgstr "" msgid "No Answer" msgstr "Žádná odpověď" -#: erpnext/stock/doctype/item/item.js:920 +#: erpnext/stock/doctype/item/item.js:941 msgid "No Company Found" msgstr "" @@ -32596,7 +32658,7 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:435 msgid "No Customers found with selected options." msgstr "" @@ -32612,11 +32674,11 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:338 +#: erpnext/stock/get_item_details.py:337 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:342 +#: erpnext/stock/get_item_details.py:341 msgid "No Item with Serial No {0}" msgstr "" @@ -32655,7 +32717,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1124 #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1200 #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1221 -#: erpnext/stock/doctype/item/item.py:1525 +#: erpnext/stock/doctype/item/item.py:1530 msgid "No Permission" msgstr "" @@ -32663,11 +32725,11 @@ msgstr "" msgid "No Purchase Invoices selected" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:102 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:116 msgid "No Purchase Orders were created" msgstr "" -#: erpnext/manufacturing/page/shop_floor/shop_floor.py:242 +#: erpnext/manufacturing/page/shop_floor/shop_floor.py:244 msgid "No Quality Inspection Template is configured for this operation." msgstr "" @@ -32679,7 +32741,7 @@ msgstr "" msgid "No Serial / Batches are available for return" msgstr "" -#: erpnext/stock/stock_ledger.py:928 +#: erpnext/stock/stock_ledger.py:976 msgid "No Standard Valuation Rate found for Item {0} in Company {1} as on {2}. Please create an Item Standard Cost record." msgstr "" @@ -32707,7 +32769,7 @@ msgstr "" msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}." msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:1005 +#: erpnext/accounts/report/gross_profit/gross_profit.py:1007 msgid "No Terms" msgstr "" @@ -32719,7 +32781,7 @@ msgstr "" msgid "No Unreconciled Payments found for this party" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:100 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:114 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:250 msgid "No Work Orders were created" msgstr "" @@ -32728,7 +32790,7 @@ msgstr "" msgid "No account set" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:356 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:365 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:211 msgid "No accounting entries for the following warehouses" msgstr "" @@ -32749,7 +32811,7 @@ msgstr "" msgid "No active item prices found." msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:849 +#: erpnext/public/js/templates/shop_floor_template.html:869 msgid "No active jobs and the queue is empty." msgstr "" @@ -32757,7 +32819,7 @@ msgstr "" msgid "No additional fields available" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1381 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1391 msgid "No available quantity to reserve for item {0} in warehouse {1}" msgstr "" @@ -32773,7 +32835,7 @@ msgstr "" msgid "No bank transactions found" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:502 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:501 msgid "No billing email found for customer: {0}" msgstr "" @@ -32797,7 +32859,7 @@ msgstr "" msgid "No data found. Seems like you uploaded a blank file" msgstr "" -#: erpnext/stock/doctype/item/item.js:950 +#: erpnext/stock/doctype/item/item.js:971 msgid "No default warehouse set for this company. Entry will use Stock Settings default." msgstr "" @@ -32838,12 +32900,12 @@ msgstr "" msgid "No item available for transfer." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:174 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:197 msgid "No items are available in sales orders {0} for production" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:171 -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:183 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:194 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:206 msgid "No items are available in the sales order {0} for production" msgstr "" @@ -32859,7 +32921,7 @@ msgstr "" msgid "No matches occurred via auto reconciliation" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:126 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:133 msgid "No material request created" msgstr "" @@ -32959,7 +33021,7 @@ msgstr "" msgid "No open task" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:335 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:360 msgid "No outstanding invoices found" msgstr "" @@ -32967,7 +33029,7 @@ msgstr "" msgid "No outstanding invoices found for the selected vouchers in account {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:333 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:358 msgid "No outstanding invoices require exchange rate revaluation" msgstr "" @@ -32983,7 +33045,7 @@ msgstr "" msgid "No pending Material Requests found to link for the given items." msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:509 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:508 msgid "No primary email found for customer: {0}" msgstr "" @@ -33014,15 +33076,15 @@ msgstr "" msgid "No records for these settings." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:776 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:656 msgid "No records found in the Payments table" msgstr "" @@ -33088,11 +33150,11 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1782 +#: erpnext/stock/doctype/item/item.py:1787 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:301 +#: erpnext/public/js/shop_floor/shop_floor.js:329 msgid "No work orders here." msgstr "" @@ -33237,7 +33299,14 @@ msgstr "Neurčeno" msgid "Not Started" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.py:431 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:269 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/report/cash_flow/cash_flow.py:161 +msgid "Not Supported" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:479 msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" @@ -33277,7 +33346,7 @@ msgstr "" msgid "Note: Automatic log deletion only applies to logs of type Update Cost" msgstr "" -#: erpnext/accounts/party.py:714 +#: erpnext/accounts/party.py:730 msgid "Note: Due Date exceeds allowed {0} credit days by {1} day(s)" msgstr "" @@ -33295,7 +33364,7 @@ msgstr "" msgid "Note: Item {0} added multiple times" msgstr "" -#: erpnext/controllers/accounts_controller.py:622 +#: erpnext/controllers/accounts_controller.py:549 msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified" msgstr "" @@ -33303,7 +33372,7 @@ msgstr "" msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups." msgstr "" -#: erpnext/stock/doctype/item/item.py:686 +#: erpnext/stock/doctype/item/item.py:691 msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}" msgstr "" @@ -33658,10 +33727,16 @@ msgstr "" msgid "On enabling this cancellation entries will be posted on the actual cancellation date and reports will consider cancelled entries as well" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:727 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:754 msgid "On expanding a row in the Items to Manufacture table, you'll see an option to 'Include Exploded Items'. Ticking this includes raw materials of the sub-assembly items in the production process." msgstr "" +#. Option for the 'Status' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project/project_list.js:8 +msgid "On hold" +msgstr "" + #. Description of the 'Excluded Fee' (Currency) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -33802,7 +33877,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:737 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:750 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33816,7 +33891,7 @@ msgstr "" msgid "Only show Items from these Item Groups" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:152 +#: erpnext/public/js/shop_floor/shop_floor.js:178 msgid "Only show work orders that have job cards" msgstr "" @@ -33959,7 +34034,7 @@ msgstr "" msgid "Open the settings dialog" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1374 +#: erpnext/public/js/shop_floor/shop_floor.js:1409 msgid "Open work order / run primary action" msgstr "" @@ -33973,9 +34048,7 @@ msgid "Opening" msgstr "" #. Group in POS Profile's connections -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_profile/pos_profile.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Opening & Closing" msgstr "" @@ -34059,7 +34132,7 @@ msgstr "Datum otevření" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:326 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -34082,11 +34155,6 @@ msgstr "" msgid "Opening Invoice Item" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "Opening Invoice Tool" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:849 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:644 msgid "Opening Invoice has rounding adjustment of {0}.Message Example
\n\n" "
'{1}' account is required to post these values. Please set it in Company: {2}.
Or, '{3}' can be enabled to not post any rounding adjustment." @@ -34096,7 +34164,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:146 msgid "Opening Invoices Summary" msgstr "" @@ -34109,46 +34177,46 @@ msgstr "" msgid "Opening Number of Booked Depreciations" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35 -msgid "Opening Purchase Invoices have been created." +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:36 +msgid "Opening Purchase Invoice(s) have been created." msgstr "" -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 #: erpnext/stock/report/stock_balance/stock_balance.py:533 msgid "Opening Qty" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:33 -msgid "Opening Sales Invoices have been created." +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35 +msgid "Opening Sales Invoice(s) have been created." msgstr "" #. Label of the opening_stock (Float) field in DocType 'Item' #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' -#: erpnext/stock/doctype/item/item.js:965 erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/item/item.py:353 -#: erpnext/stock/doctype/item/item.py:1682 +#: erpnext/stock/doctype/item/item.js:986 erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item.py:358 +#: erpnext/stock/doctype/item/item.py:1687 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1636 +#: erpnext/stock/doctype/item/item.py:1641 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1643 +#: erpnext/stock/doctype/item/item.py:1648 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1639 +#: erpnext/stock/doctype/item/item.py:1644 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" -#: erpnext/stock/doctype/item/item.py:358 +#: erpnext/stock/doctype/item/item.py:363 msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:366 -#: erpnext/stock/doctype/item/item.py:1685 +#: erpnext/stock/doctype/item/item.py:371 +#: erpnext/stock/doctype/item/item.py:1690 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -34166,7 +34234,11 @@ msgstr "" msgid "Opening and Closing" msgstr "" -#: erpnext/stock/doctype/item/item.py:199 +#: erpnext/accounts/report/cash_flow/cash_flow.py:162 +msgid "Opening and Closing balance is not supported for dimension grouped cash flow statement" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:203 msgid "Opening stock creation has been queued and will be created in the background. Please check the Stock Reconciliation after some time." msgstr "" @@ -34282,7 +34354,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:939 +#: erpnext/manufacturing/doctype/work_order/work_order.py:945 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -34319,8 +34391,8 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/work_order/work_order.js:334 #: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/public/js/shop_floor/shop_floor.js:359 -#: erpnext/setup/doctype/company/company.py:537 +#: erpnext/public/js/shop_floor/shop_floor.js:387 +#: erpnext/setup/doctype/company/company.py:539 #: erpnext/setup/doctype/email_digest/email_digest.json #: erpnext/templates/generators/bom.html:61 msgid "Operations" @@ -34339,7 +34411,7 @@ msgstr "" #. Label of the operator (Link) field in DocType 'Downtime Entry' #: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json #: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:85 -#: erpnext/public/js/shop_floor/shop_floor.js:126 +#: erpnext/public/js/shop_floor/shop_floor.js:152 msgid "Operator" msgstr "" @@ -34504,7 +34576,13 @@ msgstr "" msgid "Optimizing route" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1038 +#. Description of the 'Raw Material Group Warehouse' (Link) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Optional group warehouse. Raw material availability is checked across its child warehouses; material is still received into For Warehouse." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1042 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34638,7 +34716,7 @@ msgstr "" msgid "Ordered Qty" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:205 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:231 msgid "Ordered Qty: Quantity ordered for purchase, but not received." msgstr "" @@ -34659,14 +34737,10 @@ msgstr "" #. Label of the organization_details_section (Section Break) field in DocType #. 'Opportunity' #. Label of a Desktop Icon -#. Name of a Workspace -#. Title of a Workspace Sidebar #: erpnext/crm/doctype/lead/lead.json #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:30 #: erpnext/desktop_icon/organization.json -#: erpnext/setup/workspace/organization/organization.json -#: erpnext/workspace_sidebar/organization.json msgid "Organization" msgstr "" @@ -34766,7 +34840,7 @@ msgid "Ounce/Gallon (US)" msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:119 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:88 #: erpnext/stock/report/stock_balance/stock_balance.py:555 #: erpnext/stock/report/stock_ledger/stock_ledger.py:324 msgid "Out Qty" @@ -34790,7 +34864,7 @@ msgstr "" msgid "Out of Order" msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:663 +#: erpnext/stock/doctype/pick_list/pick_list.py:672 msgid "Out of Stock" msgstr "" @@ -34811,12 +34885,16 @@ msgstr "" msgid "Outdated POS Opening Entry" msgstr "" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Outgoing Bills" msgstr "" +#. Label of a number card in the Accounting Workspace #. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Outgoing Payment" msgstr "" @@ -34871,7 +34949,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/report/accounts_payable/accounts_payable.html:140 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:141 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169 #: erpnext/accounts/report/purchase_register/purchase_register.py:307 #: erpnext/accounts/report/sales_register/sales_register.py:333 @@ -34906,11 +34984,6 @@ msgstr "" msgid "Outward" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/subcontracting.json -msgid "Outward Order" -msgstr "" - #. Label of the over_billing_allowance (Currency) field in DocType 'Accounts #. Settings' #. Label of the over_billing_allowance (Float) field in DocType 'Item' @@ -34993,6 +35066,16 @@ msgstr "" msgid "Overdue" msgstr "" +#: erpnext/selling/doctype/customer/customer.py:612 +msgid "Overdue Billing Limit Crossed" +msgstr "" + +#. Label of the overdue_billing_threshold (Currency) field in DocType 'Customer +#. Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "Overdue Billing Threshold" +msgstr "" + #. Label of the overdue_days (Data) field in DocType 'Overdue Payment' #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json msgid "Overdue Days" @@ -35550,7 +35633,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:173 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:167 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:201 #: erpnext/accounts/report/pos_register/pos_register.py:225 @@ -35696,7 +35779,7 @@ msgstr "" msgid "Parent Account" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:385 msgid "Parent Account Missing" msgstr "" @@ -35710,7 +35793,7 @@ msgstr "" msgid "Parent Company" msgstr "" -#: erpnext/setup/doctype/company/company.py:672 +#: erpnext/setup/doctype/company/company.py:674 msgid "Parent Company must be a group company" msgstr "" @@ -35841,7 +35924,7 @@ msgstr "" msgid "Partial Payment in POS Transactions are not allowed." msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1746 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1757 msgid "Partial Stock Reservation" msgstr "" @@ -36057,7 +36140,7 @@ msgstr "" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:105 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:82 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:65 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1148 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1150 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:82 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:147 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 @@ -36071,6 +36154,7 @@ msgstr "" #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:25 #: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:26 #: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:57 +#: erpnext/controllers/trends.py:413 #: erpnext/crm/doctype/appointment/appointment.json #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.js:55 @@ -36085,7 +36169,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/party_account/party_account.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1160 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1162 msgid "Party Account" msgstr "" @@ -36191,7 +36275,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 #: erpnext/accounts/report/general_ledger/general_ledger.py:785 -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/controllers/trends.py:419 erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 msgid "Party Name" @@ -36270,7 +36354,7 @@ msgstr "" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:92 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:69 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:52 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1142 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1144 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:69 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:141 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 @@ -36293,11 +36377,11 @@ msgstr "" msgid "Party Type" msgstr "" -#: erpnext/accounts/party.py:845 +#: erpnext/accounts/party.py:861 msgid "Party Type and Party can only be set for Receivable / Payable account
{0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:646 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:704 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -36306,7 +36390,7 @@ msgid "Party Type and Party is required for Receivable / Payable account {0}" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:537 -#: erpnext/accounts/party.py:434 +#: erpnext/accounts/party.py:445 msgid "Party Type is mandatory" msgstr "" @@ -36386,12 +36470,12 @@ msgstr "" #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:25 #: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:68 -#: erpnext/public/js/shop_floor/shop_floor.js:1492 -#: erpnext/public/js/templates/shop_floor_template.html:763 +#: erpnext/public/js/shop_floor/shop_floor.js:1527 +#: erpnext/public/js/templates/shop_floor_template.html:783 msgid "Pause" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1377 +#: erpnext/public/js/shop_floor/shop_floor.js:1412 msgid "Pause / Resume job" msgstr "" @@ -36447,7 +36531,7 @@ msgstr "" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:50 #: erpnext/accounts/report/accounts_payable/accounts_payable.js:262 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1158 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1160 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209 #: erpnext/accounts/report/purchase_register/purchase_register.py:212 #: erpnext/accounts/report/purchase_register/purchase_register.py:253 @@ -36571,7 +36655,7 @@ msgstr "" msgid "Payment Entries" msgstr "" -#: erpnext/accounts/utils.py:1160 +#: erpnext/accounts/utils.py:1161 msgid "Payment Entries {0} are un-linked" msgstr "" @@ -36620,16 +36704,16 @@ msgstr "" msgid "Payment Entry Reference" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:636 +#: erpnext/accounts/doctype/payment_request/payment_request.py:637 msgid "Payment Entry already exists" msgstr "" -#: erpnext/accounts/utils.py:657 +#: erpnext/accounts/utils.py:658 msgid "Payment Entry has been modified after you pulled it. Please pull it again." msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:176 -#: erpnext/accounts/doctype/payment_request/payment_request.py:796 +#: erpnext/accounts/doctype/payment_request/payment_request.py:797 msgid "Payment Entry is already created" msgstr "" @@ -36667,7 +36751,7 @@ msgstr "" msgid "Payment Gateway Account" msgstr "" -#: erpnext/accounts/utils.py:1527 +#: erpnext/accounts/utils.py:1522 msgid "Payment Gateway Account not created, please create one manually." msgstr "" @@ -36881,11 +36965,11 @@ msgstr "" msgid "Payment Request Type" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:869 +#: erpnext/accounts/doctype/payment_request/payment_request.py:870 msgid "Payment Request for {0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:810 +#: erpnext/accounts/doctype/payment_request/payment_request.py:811 msgid "Payment Request is already created" msgstr "" @@ -36893,7 +36977,7 @@ msgstr "" msgid "Payment Request took too long to respond. Please try requesting for payment again." msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:727 +#: erpnext/accounts/doctype/payment_request/payment_request.py:728 msgid "Payment Requests cannot be created against: {0}" msgstr "" @@ -36925,7 +37009,7 @@ msgstr "" msgid "Payment Schedule" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:749 +#: erpnext/accounts/doctype/payment_request/payment_request.py:750 msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" @@ -36941,19 +37025,17 @@ msgstr "Platební plány" #. Label of the payment_term (Link) field in DocType 'Payment Terms Template #. Detail' #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/overdue_payment/overdue_payment.json #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_reference/payment_reference.json #: erpnext/accounts/doctype/payment_schedule/payment_schedule.json #: erpnext/accounts/doctype/payment_term/payment_term.json #: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 -#: erpnext/accounts/report/gross_profit/gross_profit.py:449 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1213 +#: erpnext/accounts/report/gross_profit/gross_profit.py:451 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/public/js/controllers/transaction.js:559 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" msgstr "" @@ -37059,7 +37141,7 @@ msgstr "" msgid "Payment URL" msgstr "" -#: erpnext/accounts/utils.py:1148 +#: erpnext/accounts/utils.py:1149 msgid "Payment Unlink Error" msgstr "" @@ -37193,6 +37275,10 @@ msgstr "" msgid "Pegged Currency Details" msgstr "" +#: erpnext/public/js/shop_floor/shop_floor.js:24 +msgid "Pending / In Progress" +msgstr "" + #: erpnext/setup/doctype/email_digest/templates/default.html:93 msgid "Pending Activities" msgstr "" @@ -37221,7 +37307,7 @@ msgstr "" #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:54 #: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:44 #: erpnext/manufacturing/doctype/job_card/job_card.js:272 -#: erpnext/public/js/shop_floor/shop_floor.js:782 +#: erpnext/public/js/shop_floor/shop_floor.js:818 msgid "Pending Quantity" msgstr "" @@ -37257,7 +37343,7 @@ msgstr "" msgid "Pending activities for today" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:277 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:285 msgid "Pending processing" msgstr "" @@ -37402,11 +37488,9 @@ msgstr "" #. Balance' #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json #: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Period Closing Voucher" msgstr "" @@ -37529,7 +37613,7 @@ msgstr "" #: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json #: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:54 -#: erpnext/public/js/financial_statements.js:451 +#: erpnext/public/js/financial_statements.js:488 msgid "Periodicity" msgstr "" @@ -37628,11 +37712,11 @@ msgstr "" #. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/sales_order/sales_order.js:1066 #: erpnext/stock/doctype/delivery_note/delivery_note.js:199 -#: erpnext/stock/doctype/material_request/material_request.js:156 +#: erpnext/stock/doctype/material_request/material_request.js:159 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:154 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:136 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Pick List" @@ -37807,10 +37891,8 @@ msgstr "" #. Label of a Link in the Invoicing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json -#: erpnext/workspace_sidebar/banking.json msgid "Plaid Settings" msgstr "" @@ -37864,6 +37946,10 @@ msgstr "" msgid "Planned End Date" msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.py:324 +msgid "Planned End Date cannot be before Planned Start Date" +msgstr "" + #. Label of the planned_end_time (Datetime) field in DocType 'Work Order #. Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json @@ -37894,7 +37980,7 @@ msgstr "" msgid "Planned Qty" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:199 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:225 msgid "Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured." msgstr "" @@ -37961,7 +38047,7 @@ msgstr "" msgid "Plants and Machineries" msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:660 +#: erpnext/stock/doctype/pick_list/pick_list.py:669 msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" @@ -37975,7 +38061,7 @@ msgstr "" msgid "Please Select a Supplier" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:179 msgid "Please Set Priority" msgstr "" @@ -37987,7 +38073,7 @@ msgstr "" msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:129 +#: erpnext/buying/doctype/supplier/supplier.py:137 msgid "Please add 'Supplier' role to user {0}." msgstr "" @@ -38003,11 +38089,11 @@ msgstr "" msgid "Please add Request for Quotation to the sidebar in Portal Settings." msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:421 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:422 msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:343 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -38019,11 +38105,11 @@ msgstr "" msgid "Please add at least one Serial No / Batch No" msgstr "" -#: erpnext/stock/doctype/item/item.js:921 +#: erpnext/stock/doctype/item/item.js:942 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:53 msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" @@ -38036,7 +38122,7 @@ msgstr "" msgid "Please add the account to root level Company - {0}" msgstr "" -#: erpnext/controllers/website_list_for_contact.py:305 +#: erpnext/controllers/website_list_for_contact.py:307 msgid "Please add {1} role to user {0}." msgstr "" @@ -38048,11 +38134,11 @@ msgstr "" msgid "Please attach CSV file" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1257 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1263 msgid "Please cancel and amend the Payment Entry" msgstr "" -#: erpnext/accounts/utils.py:1147 +#: erpnext/accounts/utils.py:1148 msgid "Please cancel payment entry manually first" msgstr "" @@ -38078,11 +38164,11 @@ msgstr "" msgid "Please check either with operations or FG Based Operating Cost." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:149 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:150 msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:621 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:770 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -38107,7 +38193,7 @@ msgstr "" msgid "Please click on 'Generate Schedule' to get schedule" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:987 +#: erpnext/public/js/shop_floor/shop_floor.js:1023 msgid "Please complete every check before submitting the inspection." msgstr "" @@ -38123,11 +38209,11 @@ msgstr "" msgid "Please contact any of the following users for this transaction." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:534 +#: erpnext/selling/doctype/customer/customer.py:551 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:527 +#: erpnext/selling/doctype/customer/customer.py:544 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -38155,7 +38241,7 @@ msgstr "" msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:716 +#: erpnext/stock/doctype/item/item.py:721 msgid "Please delete Product Bundle {0}, before merging {1} into {2}" msgstr "" @@ -38167,7 +38253,7 @@ msgstr "" msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:296 +#: erpnext/controllers/item_variant.py:358 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -38203,11 +38289,11 @@ msgstr "" msgid "Please ensure that the {0} account {1} is a Payable account. You can change the account type to Payable or select a different account." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" @@ -38216,7 +38302,7 @@ msgid "Please enter Difference Account or set default Stock Adjustment msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:559 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:962 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:968 msgid "Please enter Account for Change Amount" msgstr "" @@ -38228,7 +38314,7 @@ msgstr "" msgid "Please enter Batch No" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/services/gl_composer.py:19 +#: erpnext/stock/doctype/stock_reconciliation/services/gl_composer.py:26 msgid "Please enter Cost Center" msgstr "" @@ -38245,7 +38331,7 @@ msgid "Please enter Expense Account" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.js:84 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:99 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:98 msgid "Please enter Item Code to get Batch Number" msgstr "" @@ -38253,7 +38339,7 @@ msgstr "" msgid "Please enter Item Code to get batch no" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:85 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:104 msgid "Please enter Item first" msgstr "" @@ -38261,7 +38347,7 @@ msgstr "" msgid "Please enter Maintenance Details first" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:209 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:232 msgid "Please enter Planned Qty for Item {0} at row {1}" msgstr "" @@ -38281,7 +38367,7 @@ msgstr "" msgid "Please enter Reference date" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:400 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:401 msgid "Please enter Root Type for account- {0}" msgstr "" @@ -38302,7 +38388,7 @@ msgid "Please enter Warehouse and Date" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:501 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:958 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:964 msgid "Please enter Write Off Account" msgstr "" @@ -38330,7 +38416,7 @@ msgstr "" msgid "Please enter company name first" msgstr "" -#: erpnext/controllers/accounts_controller.py:1382 +#: erpnext/controllers/accounts_controller.py:1309 msgid "Please enter default currency in Company Master" msgstr "" @@ -38346,7 +38432,7 @@ msgstr "" msgid "Please enter parent cost center" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:186 +#: erpnext/public/js/utils/barcode_scanner.js:191 msgid "Please enter quantity for item {0}" msgstr "" @@ -38370,7 +38456,7 @@ msgstr "" msgid "Please enter the phone number first" msgstr "" -#: erpnext/controllers/buying_controller.py:1193 +#: erpnext/controllers/buying_controller.py:1201 msgid "Please enter the {schedule_date}." msgstr "" @@ -38422,7 +38508,7 @@ msgstr "" msgid "Please make sure the employees above report to another Active employee." msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:379 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:380 msgid "Please make sure the file you are using has 'Parent Account' column present in the header." msgstr "" @@ -38430,7 +38516,7 @@ msgstr "" msgid "Please make sure you really want to delete all the transactions for {0}. Your master data will remain as it is. This action cannot be undone." msgstr "" -#: erpnext/stock/doctype/item/item.js:1032 +#: erpnext/stock/doctype/item/item.js:1053 msgid "Please mention 'Weight UOM' along with Weight." msgstr "" @@ -38443,7 +38529,7 @@ msgstr "" msgid "Please mention no of visits required" msgstr "" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:73 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:74 msgid "Please mention the Current and New BOM for replacement." msgstr "" @@ -38489,7 +38575,7 @@ msgstr "" msgid "Please select BOM against item {0}" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:204 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:227 msgid "Please select BOM for Item in Row {0}" msgstr "" @@ -38511,7 +38597,7 @@ msgstr "" msgid "Please select Company" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:157 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 msgid "Please select Company and Posting Date to get entries" msgstr "" @@ -38531,7 +38617,7 @@ msgstr "" msgid "Please select Customer first" msgstr "" -#: erpnext/setup/doctype/company/company.py:603 +#: erpnext/setup/doctype/company/company.py:605 msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" @@ -38540,8 +38626,8 @@ msgstr "" msgid "Please select Finished Good Item for Service Item {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:763 -#: erpnext/assets/doctype/asset/asset.js:778 +#: erpnext/assets/doctype/asset/asset.js:771 +#: erpnext/assets/doctype/asset/asset.js:786 msgid "Please select Item Code first" msgstr "" @@ -38581,7 +38667,7 @@ msgstr "" msgid "Please select Qty against item {0}" msgstr "" -#: erpnext/stock/doctype/item/item.py:390 +#: erpnext/stock/doctype/item/item.py:395 msgid "Please select Sample Retention Warehouse in Stock Settings first" msgstr "" @@ -38597,7 +38683,7 @@ msgstr "" msgid "Please select Stock Asset Account" msgstr "" -#: erpnext/setup/doctype/company/company.py:230 +#: erpnext/setup/doctype/company/company.py:232 msgid "Please select Stock Delivered But Not Billed Account" msgstr "" @@ -38609,14 +38695,14 @@ msgstr "" msgid "Please select a BOM" msgstr "" -#: erpnext/accounts/party.py:436 +#: erpnext/accounts/party.py:447 #: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -#: erpnext/stock/doctype/pick_list/pick_list.py:1388 +#: erpnext/stock/doctype/pick_list/pick_list.py:1409 msgid "Please select a Company" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 -#: erpnext/manufacturing/doctype/bom/bom.js:730 +#: erpnext/manufacturing/doctype/bom/bom.js:734 #: erpnext/manufacturing/doctype/bom/bom.py:302 #: erpnext/public/js/controllers/accounts.js:274 #: erpnext/public/js/controllers/transaction.js:3433 @@ -38718,11 +38804,11 @@ msgstr "" msgid "Please select a value for {0} quotation_to {1}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:194 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:203 msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:290 +#: erpnext/controllers/item_variant.py:352 msgid "Please select at least one attribute value" msgstr "" @@ -38808,7 +38894,7 @@ msgstr "" msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" -#: erpnext/stock/doctype/item/item.js:433 +#: erpnext/stock/doctype/item/item.js:448 msgid "Please select the Warehouse first" msgstr "" @@ -38834,7 +38920,7 @@ msgid "Please select weekly off day" msgstr "Vyberte prosím týdenní den volna" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1215 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:649 msgid "Please select {0} first" msgstr "" @@ -38916,10 +39002,6 @@ msgstr "" msgid "Please set Parent Row No for item {0}" msgstr "" -#: erpnext/controllers/buying_controller.py:355 -msgid "Please set Purchase Expense Contra Account in Company {0}" -msgstr "" - #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:24 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:35 msgid "Please set Root Type" @@ -38929,7 +39011,7 @@ msgstr "" msgid "Please set Tax ID for the customer '{0}'" msgstr "Nastavte prosím DIČ pro zákazníka „{0}“" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:369 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" msgstr "" @@ -38957,12 +39039,12 @@ msgstr "" msgid "Please set a Purchase Price Variance Account for Item {0} or a Default Purchase Price Variance Account in Company {1}." msgstr "" -#: erpnext/stock/doctype/item/item.py:341 -#: erpnext/stock/doctype/item/item.py:1669 +#: erpnext/stock/doctype/item/item.py:346 +#: erpnext/stock/doctype/item/item.py:1674 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:807 +#: erpnext/projects/doctype/project/project.py:837 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38982,7 +39064,7 @@ msgstr "" msgid "Please set an Address on the Company '{0}'" msgstr "Nastavte prosím adresu u společnosti „{0}“" -#: erpnext/stock/services/base_stock_gl_composer.py:194 +#: erpnext/stock/services/base_stock_gl_composer.py:261 msgid "Please set an Expense Account in the Items table" msgstr "" @@ -39011,7 +39093,7 @@ msgstr "" msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" -#: erpnext/accounts/utils.py:2568 +#: erpnext/accounts/utils.py:2564 msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" @@ -39023,7 +39105,7 @@ msgstr "" msgid "Please set default UOM in Stock Settings" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:107 +#: erpnext/stock/services/base_stock_gl_composer.py:114 msgid "Please set default cost of goods sold account in company {0} for booking rounding gain and loss during stock transfer" msgstr "" @@ -39032,7 +39114,7 @@ msgid "Please set default inventory account for item {0}, or their item group or msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:279 -#: erpnext/accounts/utils.py:1169 +#: erpnext/accounts/utils.py:1170 msgid "Please set default {0} in Company {1}" msgstr "" @@ -39040,7 +39122,7 @@ msgstr "" msgid "Please set filter based on Item or Warehouse" msgstr "" -#: erpnext/controllers/accounts_controller.py:1295 +#: erpnext/controllers/accounts_controller.py:1222 msgid "Please set one of the following:" msgstr "" @@ -39103,11 +39185,16 @@ msgstr "" msgid "Please set {0} in BOM Creator {1}" msgstr "" +#: erpnext/controllers/buying_controller.py:347 +#: erpnext/stock/services/base_stock_gl_composer.py:209 +msgid "Please set {0} in Company {1} or in the Item Defaults of Item {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1147 msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss" msgstr "" -#: erpnext/controllers/accounts_controller.py:498 +#: erpnext/controllers/accounts_controller.py:504 msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" @@ -39119,7 +39206,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:349 +#: erpnext/stock/get_item_details.py:348 msgid "Please specify Company" msgstr "" @@ -39146,7 +39233,7 @@ msgstr "" msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" -#: erpnext/stock/doctype/item_attribute/item_attribute.py:92 +#: erpnext/stock/doctype/item_attribute/item_attribute.py:94 msgid "Please specify from/to range" msgstr "" @@ -39158,7 +39245,7 @@ msgstr "" msgid "Please submit Purchase Order {0} before proceeding." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:284 msgid "Please try again in an hour." msgstr "" @@ -39166,7 +39253,7 @@ msgstr "" msgid "Please uncheck 'Show in Bucket View' to create Orders" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:237 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:240 msgid "Please update Repair Status." msgstr "" @@ -39343,7 +39430,7 @@ msgstr "" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:16 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:15 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:18 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1140 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1142 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:15 #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:38 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:7 @@ -39351,7 +39438,7 @@ msgstr "" #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 #: erpnext/accounts/report/general_ledger/general_ledger.py:697 -#: erpnext/accounts/report/gross_profit/gross_profit.py:300 +#: erpnext/accounts/report/gross_profit/gross_profit.py:302 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:143 @@ -39444,7 +39531,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:306 +#: erpnext/accounts/report/gross_profit/gross_profit.py:308 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json @@ -39469,7 +39556,7 @@ msgstr "" msgid "Posting date does not match the selected transaction" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:101 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:109 msgid "Posting date is required" msgstr "" @@ -39544,15 +39631,15 @@ msgstr "" msgid "Pre Sales" msgstr "" -#: erpnext/accounts/utils.py:2806 +#: erpnext/accounts/utils.py:2802 msgid "Pre-Submit Warning" msgstr "" -#: erpnext/accounts/utils.py:2855 +#: erpnext/accounts/utils.py:2851 msgid "Pre-Submit Warning: Credit Limit" msgstr "" -#: erpnext/accounts/utils.py:2867 +#: erpnext/accounts/utils.py:2863 msgid "Pre-Submit Warning: Packed Qty" msgstr "" @@ -39565,11 +39652,6 @@ msgstr "" msgid "Preference" msgstr "" -#: banking/src/components/features/Settings/Preferences.tsx:43 -#: banking/src/components/features/Settings/SettingsDialogContent.tsx:27 -msgid "Preferences" -msgstr "" - #: banking/src/components/features/Settings/Preferences.tsx:33 msgid "Preferences updated" msgstr "" @@ -39595,7 +39677,7 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1078 +#: erpnext/public/js/shop_floor/shop_floor.js:1114 msgid "Preparing stock entry..." msgstr "" @@ -39692,7 +39774,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:201 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39834,7 +39916,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1384 +#: erpnext/stock/get_item_details.py:1383 msgid "Price List Currency not selected" msgstr "" @@ -40277,11 +40359,11 @@ msgstr "" msgid "Priority cannot be less than 1." msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:767 msgid "Priority has been changed to {0}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:179 msgid "Priority is mandatory" msgstr "" @@ -40376,7 +40458,7 @@ msgid "Process Loss Qty" msgstr "Množství ztráty procesu" #: erpnext/manufacturing/doctype/job_card/job_card.js:288 -#: erpnext/public/js/shop_floor/shop_floor.js:798 +#: erpnext/public/js/shop_floor/shop_floor.js:834 msgid "Process Loss Quantity" msgstr "" @@ -40405,7 +40487,6 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json -#: erpnext/workspace_sidebar/banking.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Process Payment Reconciliation" @@ -40664,7 +40745,7 @@ msgstr "" #. Label of a Card Break in the Manufacturing Workspace #: erpnext/manufacturing/doctype/workstation/workstation.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/setup/doctype/company/company.py:543 +#: erpnext/setup/doctype/company/company.py:545 msgid "Production" msgstr "" @@ -40729,7 +40810,7 @@ msgstr "" msgid "Production Plan" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:169 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:192 msgid "Production Plan Already Submitted" msgstr "" @@ -40788,7 +40869,7 @@ msgid "Production Plan Sub Assembly Item" msgstr "" #. Name of a report -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:110 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:136 #: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.json msgid "Production Plan Summary" msgstr "" @@ -40811,21 +40892,23 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Profit This Year" msgstr "Zisk v tomto roce" #. Option for the 'Report Type' (Select) field in DocType 'Account' #. Option for the 'Report Type' (Select) field in DocType 'Process Period #. Closing Voucher Detail' +#. Label of a chart in the Accounting Workspace #. Label of a chart in the Financial Reports Workspace #. Label of a chart in the Invoicing Workspace #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/account/account.json #: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/workspace/accounting/accounting.json #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/financial_statements.js:343 +#: erpnext/public/js/financial_statements.js:368 #: erpnext/workspace_sidebar/financial_reports.json msgid "Profit and Loss" msgstr "" @@ -40840,7 +40923,7 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:229 msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" msgstr "" @@ -40852,8 +40935,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:162 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:163 msgid "Profit for the year" msgstr "" @@ -40882,7 +40965,7 @@ msgstr "" msgid "Progress (%)" msgstr "" -#: erpnext/projects/doctype/project/project.py:432 +#: erpnext/projects/doctype/project/project.py:434 msgid "Project Collaboration Invitation" msgstr "" @@ -40930,7 +41013,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:745 +#: erpnext/projects/doctype/project/project.py:775 msgid "Project Summary for {0}" msgstr "" @@ -41010,7 +41093,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:460 +#: erpnext/controllers/trends.py:561 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -41048,7 +41131,7 @@ msgstr "" msgid "Projected Quantity" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:184 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:210 msgid "Projected Quantity Formula" msgstr "" @@ -41061,7 +41144,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:512 +#: erpnext/projects/doctype/project/project.py:542 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -41222,7 +41305,7 @@ msgstr "" msgid "Providing" msgstr "" -#: erpnext/setup/doctype/company/company.py:642 +#: erpnext/setup/doctype/company/company.py:644 msgid "Provisional Account" msgstr "" @@ -41240,9 +41323,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:178 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:179 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:247 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41302,7 +41385,7 @@ msgstr "" #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json #: erpnext/projects/doctype/project/project_dashboard.py:16 -#: erpnext/setup/doctype/company/company.py:531 erpnext/setup/install.py:413 +#: erpnext/setup/doctype/company/company.py:533 erpnext/setup/install.py:413 #: erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item_list.js:30 #: erpnext/stock/doctype/item_lead_time/item_lead_time.json @@ -41377,8 +41460,8 @@ msgstr "" msgid "Purchase Expense Contra Account" msgstr "" -#: erpnext/controllers/buying_controller.py:365 -#: erpnext/controllers/buying_controller.py:379 +#: erpnext/controllers/buying_controller.py:373 +#: erpnext/controllers/buying_controller.py:387 msgid "Purchase Expense for Item {0}" msgstr "" @@ -41425,7 +41508,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:30 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:446 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:445 #: erpnext/workspace_sidebar/buying.json #: erpnext/workspace_sidebar/invoicing.json msgid "Purchase Invoice" @@ -41497,7 +41580,6 @@ msgstr "" #. Label of the purchase_order (Link) field in DocType 'Stock Entry' #. Label of the purchase_order (Link) field in DocType 'Subcontracting Receipt #. Item' -#. Label of a Link in the Subcontracting Workspace #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:61 #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json @@ -41516,7 +41598,7 @@ msgstr "" #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/buying_controller.py:929 +#: erpnext/controllers/buying_controller.py:937 #: erpnext/crm/doctype/contract/contract.json #: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:54 #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json @@ -41525,14 +41607,12 @@ msgstr "" #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/setup/doctype/authorization_rule/authorization_rule.json #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json -#: erpnext/stock/doctype/material_request/material_request.js:196 +#: erpnext/stock/doctype/material_request/material_request.js:199 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:217 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json #: erpnext/workspace_sidebar/buying.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Purchase Order" msgstr "" @@ -41633,7 +41713,7 @@ msgstr "" msgid "Purchase Order {0} is not submitted" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:582 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:583 msgid "Purchase Orders" msgstr "" @@ -41648,7 +41728,7 @@ msgstr "" msgid "Purchase Orders Items Overdue" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:277 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:278 msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}." msgstr "" @@ -41663,7 +41743,7 @@ msgstr "" msgid "Purchase Orders to Receive" msgstr "" -#: erpnext/controllers/accounts_controller.py:1235 +#: erpnext/controllers/accounts_controller.py:1162 msgid "Purchase Orders {0} are unlinked" msgstr "" @@ -41677,7 +41757,7 @@ msgstr "" msgid "Purchase Price Variance Account" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:93 msgid "Purchase Price Variance for {0}" msgstr "" @@ -41716,7 +41796,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:151 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 #: erpnext/stock/workspace/stock/stock.json #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:68 #: erpnext/workspace_sidebar/stock.json @@ -41807,10 +41887,8 @@ msgid "Purchase Return" msgstr "" #. Label of the purchase_tax_template (Link) field in DocType 'Tax Rule' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/setup/doctype/company/company.js:161 -#: erpnext/workspace_sidebar/taxes.json msgid "Purchase Tax Template" msgstr "" @@ -41865,15 +41943,15 @@ msgstr "" msgid "Purchase Time" msgstr "" -#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:57 +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:62 msgid "Purchase Value" msgstr "" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:35 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:45 msgid "Purchase Voucher No" msgstr "" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:29 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:39 msgid "Purchase Voucher Type" msgstr "" @@ -41910,7 +41988,7 @@ msgstr "" #: erpnext/stock/doctype/item/item_list.js:41 #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:481 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:480 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json @@ -41955,19 +42033,19 @@ msgstr "" msgid "Q4" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:743 +#: erpnext/public/js/templates/shop_floor_template.html:763 msgid "QC Available" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:737 +#: erpnext/public/js/templates/shop_floor_template.html:757 msgid "QC Passed" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:739 +#: erpnext/public/js/templates/shop_floor_template.html:759 msgid "QC Rejected" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:741 +#: erpnext/public/js/templates/shop_floor_template.html:761 msgid "QC Required" msgstr "" @@ -42004,14 +42082,14 @@ msgstr "" #. DocType 'Subcontracting Receipt' #: erpnext/accounts/doctype/pricing_rule/pricing_rule.json #: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:345 +#: erpnext/accounts/report/gross_profit/gross_profit.py:347 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:242 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:226 -#: erpnext/controllers/trends.py:290 erpnext/controllers/trends.py:302 -#: erpnext/controllers/trends.py:307 +#: erpnext/controllers/trends.py:300 erpnext/controllers/trends.py:312 +#: erpnext/controllers/trends.py:317 #: erpnext/crm/doctype/opportunity_item/opportunity_item.json -#: erpnext/manufacturing/doctype/bom/bom.js:1108 +#: erpnext/manufacturing/doctype/bom/bom.js:1112 #: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json @@ -42028,7 +42106,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:894 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -42129,7 +42207,7 @@ msgstr "" msgid "Qty Consumed Per Unit" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:868 +#: erpnext/public/js/templates/shop_floor_template.html:888 msgid "Qty Done" msgstr "" @@ -42153,7 +42231,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:873 +#: erpnext/manufacturing/doctype/work_order/work_order.py:879 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -42208,8 +42286,8 @@ msgstr "" msgid "Qty for which recursion isn't applicable." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1066 -#: erpnext/manufacturing/doctype/work_order/work_order.js:1089 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1070 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1093 msgid "Qty for {0}" msgstr "" @@ -42227,7 +42305,7 @@ msgstr "" msgid "Qty of Finished Goods Item" msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:707 +#: erpnext/stock/doctype/pick_list/pick_list.py:716 msgid "Qty of Finished Goods Item should be greater than 0." msgstr "" @@ -42256,7 +42334,7 @@ msgstr "" msgid "Qty to Deliver" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:401 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:400 msgid "Qty to Disassemble" msgstr "" @@ -42266,7 +42344,7 @@ msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:246 #: erpnext/manufacturing/doctype/job_card/job_card.py:963 -#: erpnext/public/js/shop_floor/shop_floor.js:756 +#: erpnext/public/js/shop_floor/shop_floor.js:792 msgid "Qty to Manufacture" msgstr "" @@ -42350,7 +42428,7 @@ msgstr "" msgid "Quality Action Resolution" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:957 +#: erpnext/public/js/shop_floor/shop_floor.js:993 msgid "Quality Check" msgstr "" @@ -42498,7 +42576,7 @@ msgstr "" msgid "Quality Inspection Template" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:907 +#: erpnext/public/js/shop_floor/shop_floor.js:943 msgid "Quality Inspection Template Missing" msgstr "" @@ -42512,7 +42590,7 @@ msgstr "" msgid "Quality Inspection is required for the item {0} before completing the job card {1}" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1004 +#: erpnext/public/js/shop_floor/shop_floor.js:1040 msgid "Quality Inspection {0} is Rejected. Resolve the issue or follow your rejection process before submitting the job card." msgstr "" @@ -42525,7 +42603,7 @@ msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" #: erpnext/public/js/controllers/transaction.js:446 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:212 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:211 msgid "Quality Inspection(s)" msgstr "" @@ -42534,7 +42612,7 @@ msgstr "" msgid "Quality Inspections" msgstr "" -#: erpnext/setup/doctype/company/company.py:573 +#: erpnext/setup/doctype/company/company.py:575 msgid "Quality Management" msgstr "" @@ -42677,11 +42755,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:39 #: erpnext/stock/dashboard/item_dashboard.js:248 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json -#: erpnext/stock/doctype/material_request/material_request.js:368 +#: erpnext/stock/doctype/material_request/material_request.js:369 #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:829 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:828 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:36 @@ -42791,7 +42869,7 @@ msgstr "" msgid "Quantity and Warehouse" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:214 +#: erpnext/stock/doctype/material_request/material_request.py:253 msgid "Quantity cannot be greater than {0} for Item {1}" msgstr "" @@ -42807,7 +42885,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1649 +#: erpnext/stock/doctype/item/item.py:1654 msgid "Quantity must be greater than zero." msgstr "" @@ -42815,7 +42893,7 @@ msgstr "" msgid "Quantity must be less than or equal to {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1119 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1123 #: erpnext/stock/doctype/pick_list/pick_list.js:214 msgid "Quantity must not be more than {0}" msgstr "" @@ -42838,15 +42916,15 @@ msgstr "" msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:865 +#: erpnext/manufacturing/doctype/work_order/work_order.py:871 msgid "Quantity to Manufacture must be greater than 0." msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:257 +#: erpnext/public/js/utils/barcode_scanner.js:262 msgid "Quantity to Scan" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:919 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:932 msgid "Quantity {0} should not be greater than allowed quantity {1}" msgstr "" @@ -42875,7 +42953,7 @@ msgstr "" msgid "Query Route String" msgstr "Řetězec trasy dotazu" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:200 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -43011,7 +43089,7 @@ msgstr "" msgid "Quote Status" msgstr "" -#: erpnext/selling/report/quotation_trends/quotation_trends.py:57 +#: erpnext/selling/report/quotation_trends/quotation_trends.py:62 msgid "Quoted Amount" msgstr "" @@ -43115,7 +43193,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:892 +#: erpnext/public/js/utils.js:904 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -43348,7 +43426,7 @@ msgstr "" msgid "Rate or Discount" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:184 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:202 msgid "Rate or Discount is required for the price discount." msgstr "" @@ -43393,6 +43471,14 @@ msgstr "" msgid "Raw Material Cost Per Qty" msgstr "" +#. Label of the raw_material_group_warehouse (Link) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:160 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:180 +msgid "Raw Material Group Warehouse" +msgstr "" + #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:132 msgid "Raw Material Item" msgstr "" @@ -43435,7 +43521,7 @@ msgstr "" #. Label of the section_break_8 (Section Break) field in DocType 'Job Card' #. Label of the mr_items (Table) field in DocType 'Production Plan' #: erpnext/manufacturing/doctype/bom/bom.js:449 -#: erpnext/manufacturing/doctype/bom/bom.js:1081 +#: erpnext/manufacturing/doctype/bom/bom.js:1085 #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:379 @@ -43513,11 +43599,11 @@ msgid "Re-extracting" msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:345 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:150 #: erpnext/manufacturing/doctype/work_order/work_order.js:788 #: erpnext/selling/doctype/sales_order/sales_order.js:1012 #: erpnext/selling/doctype/sales_order/sales_order_list.js:70 -#: erpnext/stock/doctype/material_request/material_request.js:243 +#: erpnext/stock/doctype/material_request/material_request.js:246 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:116 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:163 msgid "Re-open" @@ -43602,11 +43688,11 @@ msgstr "" msgid "Readings" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Ready" msgstr "Připraveno" -#: erpnext/public/js/templates/shop_floor_template.html:858 +#: erpnext/public/js/templates/shop_floor_template.html:878 msgid "Ready to Submit" msgstr "" @@ -43713,7 +43799,7 @@ msgid "Receivable / Payable Account" msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1156 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1158 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241 #: erpnext/accounts/report/sales_register/sales_register.py:231 #: erpnext/accounts/report/sales_register/sales_register.py:285 @@ -43835,7 +43921,7 @@ msgstr "" msgid "Received Quantity" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:377 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:376 msgid "Received Stock Entries" msgstr "" @@ -43977,11 +44063,6 @@ msgstr "" msgid "Reconciliation Progress" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/banking.json -msgid "Reconciliation Statement" -msgstr "" - #. Label of the reconciliation_takes_effect_on (Select) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json @@ -44070,7 +44151,7 @@ msgstr "" msgid "Recording URL" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:995 +#: erpnext/public/js/shop_floor/shop_floor.js:1031 msgid "Recording inspection..." msgstr "" @@ -44097,11 +44178,11 @@ msgstr "" msgid "Recurse Every (As Per Transaction UOM)" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:240 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:258 msgid "Recurse Over Qty cannot be less than 0" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:334 #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -44349,7 +44430,7 @@ msgstr "" msgid "Refunded" msgstr "" -#: erpnext/stock/reorder_item.py:383 +#: erpnext/stock/reorder_item.py:385 msgid "Regards," msgstr "" @@ -44493,7 +44574,7 @@ msgid "Remaining Amount" msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1235 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180 msgid "Remaining Balance" msgstr "" @@ -44551,7 +44632,7 @@ msgstr "" #: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:11 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:135 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1267 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 #: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:121 @@ -44744,10 +44825,10 @@ msgid "Report Line Items" msgstr "" #: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 -#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 +#: erpnext/accounts/report/cash_flow/cash_flow.js:29 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 msgid "Report Template" msgstr "" @@ -44820,7 +44901,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:399 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44959,7 +45040,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:908 +#: erpnext/public/js/utils.js:920 msgid "Reqd by date" msgstr "" @@ -45005,7 +45086,7 @@ msgstr "" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:270 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/stock/doctype/material_request/material_request.js:202 +#: erpnext/stock/doctype/material_request/material_request.js:205 #: erpnext/workspace_sidebar/buying.json msgid "Request for Quotation" msgstr "" @@ -45067,7 +45148,7 @@ msgstr "" msgid "Requested Qty" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:202 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:228 msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" @@ -45180,7 +45261,7 @@ msgstr "" msgid "Research" msgstr "" -#: erpnext/setup/doctype/company/company.py:579 +#: erpnext/setup/doctype/company/company.py:581 msgid "Research & Development" msgstr "" @@ -45223,7 +45304,7 @@ msgstr "" msgid "Reservation Based On" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:946 +#: erpnext/manufacturing/doctype/work_order/work_order.js:950 #: erpnext/selling/doctype/sales_order/sales_order.js:107 #: erpnext/stock/doctype/pick_list/pick_list.js:158 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179 @@ -45258,11 +45339,11 @@ msgstr "" msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:313 msgid "Reserve for Raw Materials" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:261 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Sub-assembly" msgstr "" @@ -45271,7 +45352,7 @@ msgstr "" msgid "Reserved" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:665 +#: erpnext/stock/services/serial_batch_bundle_service.py:664 msgid "Reserved Batch Conflict" msgstr "" @@ -45312,7 +45393,7 @@ msgstr "" msgid "Reserved Qty for Production Plan" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:211 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:237 msgid "Reserved Qty for Production: Raw materials quantity to make manufacturing items." msgstr "" @@ -45321,7 +45402,7 @@ msgstr "" msgid "Reserved Qty for Subcontract" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:214 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:240 msgid "Reserved Qty for Subcontract: Raw materials quantity to make subcontracted items." msgstr "" @@ -45329,7 +45410,7 @@ msgstr "" msgid "Reserved Qty should be greater than Delivered Qty." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:208 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:234 msgid "Reserved Qty: Quantity ordered for sale, but not delivered." msgstr "" @@ -45341,14 +45422,14 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2452 +#: erpnext/stock/stock_ledger.py:2500 msgid "Reserved Serial No." msgstr "" #. Label of the reserved_stock (Float) field in DocType 'Bin' #. Name of a report #: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:24 -#: erpnext/manufacturing/doctype/work_order/work_order.js:962 +#: erpnext/manufacturing/doctype/work_order/work_order.js:966 #: erpnext/public/js/stock_reservation.js:236 #: erpnext/selling/doctype/sales_order/sales_order.js:128 #: erpnext/selling/doctype/sales_order/sales_order.js:495 @@ -45357,21 +45438,21 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2436 +#: erpnext/stock/stock_ledger.py:2484 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2481 +#: erpnext/stock/stock_ledger.py:2529 msgid "Reserved Stock for Batch" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:327 msgid "Reserved Stock for Raw Materials" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:275 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301 msgid "Reserved Stock for Sub-assembly" msgstr "" @@ -45405,7 +45486,7 @@ msgstr "" #: erpnext/public/js/stock_reservation.js:203 #: erpnext/selling/doctype/sales_order/sales_order.js:421 -#: erpnext/stock/doctype/pick_list/pick_list.js:306 +#: erpnext/stock/doctype/pick_list/pick_list.js:307 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:292 msgid "Reserving Stock..." msgstr "" @@ -45576,7 +45657,7 @@ msgstr "" msgid "Restart Subscription" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:183 +#: erpnext/assets/doctype/asset/asset.js:191 msgid "Restore Asset" msgstr "" @@ -45592,6 +45673,15 @@ msgstr "" msgid "Restrict Items Based On" msgstr "" +#. Label of the restrict_to_companies (Check) field in DocType 'Supplier' +#. Label of the restrict_to_companies (Check) field in DocType 'Customer' +#. Label of the restrict_to_companies (Check) field in DocType 'Item' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Restrict to Companies" +msgstr "" + #. Label of the section_break_6 (Section Break) field in DocType 'Shipping #. Rule' #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json @@ -45630,11 +45720,11 @@ msgid "Resume" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:661 -#: erpnext/public/js/templates/shop_floor_template.html:759 +#: erpnext/public/js/templates/shop_floor_template.html:779 msgid "Resume Job" msgstr "" -#: erpnext/projects/doctype/timesheet/timesheet.js:65 +#: erpnext/projects/doctype/timesheet/timesheet.js:66 msgid "Resume Timer" msgstr "" @@ -45869,7 +45959,7 @@ msgstr "" msgid "Revaluation Entry" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:385 msgid "Revaluation Journal: {0}" msgstr "" @@ -45885,6 +45975,10 @@ msgstr "" msgid "Revaluation Surplus" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:631 +msgid "Revaluation journal for {0} has been created: {1}" +msgstr "" + #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:88 msgid "Revenue" msgstr "" @@ -45894,11 +45988,19 @@ msgstr "" msgid "Revenue Account" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:39 +msgid "Reversal Journal Entries" +msgstr "" + #. Label of the reversal_of (Link) field in DocType 'Journal Entry' #: erpnext/accounts/doctype/journal_entry/journal_entry.json msgid "Reversal Of" msgstr "" +#: erpnext/accounts/doctype/journal_entry/journal_entry_list.js:6 +msgid "Reversal Of Exchange Rate Revaluation" +msgstr "" + #: erpnext/accounts/doctype/journal_entry/journal_entry.js:253 msgid "Reverse Journal Entry" msgstr "" @@ -45908,6 +46010,10 @@ msgstr "" msgid "Reverse Sign" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:118 +msgid "Reversing Journals..." +msgstr "" + #. Label of the review (Link) field in DocType 'Quality Action' #. Group in Quality Goal's connections #. Label of the sb_00 (Section Break) field in DocType 'Quality Review' @@ -46044,6 +46150,12 @@ msgstr "" msgid "Role allowed to bypass credit limit" msgstr "" +#. Label of the role_allowed_to_bypass_overdue_billing (Link) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role allowed to bypass overdue billing limit" +msgstr "" + #. Description of the 'Exempted Role' (Link) field in DocType 'Accounting #. Period' #: erpnext/accounts/doctype/accounting_period/accounting_period.json @@ -46105,7 +46217,7 @@ msgstr "" msgid "Root Type" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:404 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:405 msgid "Root Type for {0} must be one of the Asset, Liability, Income, Expense and Equity" msgstr "" @@ -46264,13 +46376,13 @@ msgstr "" msgid "Rounding Loss Allowance" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:45 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:55 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:49 msgid "Rounding Loss Allowance should be between 0 and 1" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:119 -#: erpnext/stock/services/base_stock_gl_composer.py:134 +#: erpnext/stock/services/base_stock_gl_composer.py:126 +#: erpnext/stock/services/base_stock_gl_composer.py:141 msgid "Rounding gain/loss Entry for Stock Transfer" msgstr "" @@ -46313,7 +46425,7 @@ msgstr "" msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:343 +#: erpnext/manufacturing/doctype/work_order/work_order.py:349 msgid "Row #1: Sequence ID must be 1 for Operation {0}." msgstr "" @@ -46327,7 +46439,7 @@ msgstr "" msgid "Row #{0} (Payment Table): Amount must be positive" msgstr "" -#: erpnext/stock/doctype/item/item.py:585 +#: erpnext/stock/doctype/item/item.py:590 msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}." msgstr "" @@ -46490,11 +46602,11 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:420 +#: erpnext/manufacturing/doctype/work_order/work_order.py:426 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:445 +#: erpnext/manufacturing/doctype/work_order/work_order.py:451 msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" @@ -46502,7 +46614,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:433 +#: erpnext/manufacturing/doctype/work_order/work_order.py:439 msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" @@ -46543,11 +46655,11 @@ msgstr "" msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:196 +#: erpnext/stock/services/base_stock_gl_composer.py:263 msgid "Row #{0}: Expense Account not set for the Item {1}. {2}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:145 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:148 msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" @@ -46610,11 +46722,11 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:680 +#: erpnext/stock/doctype/pick_list/pick_list.py:689 msgid "Row #{0}: Item Code is Mandatory" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:427 +#: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Row #{0}: Item added" msgstr "" @@ -46626,7 +46738,7 @@ msgstr "" msgid "Row #{0}: Item {1} does not exist" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1650 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1661 msgid "Row #{0}: Item {1} has been picked, please reserve stock from the Pick List." msgstr "" @@ -46703,7 +46815,7 @@ msgstr "" msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1733 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1744 msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" @@ -46756,11 +46868,11 @@ msgstr "" msgid "Row #{0}: Please select the Sub Assembly Warehouse" msgstr "Řádek č. {0}: Vyberte prosím sklad podsestavy" -#: erpnext/stock/doctype/item/item.py:592 +#: erpnext/stock/doctype/item/item.py:597 msgid "Row #{0}: Please set reorder quantity" msgstr "" -#: erpnext/controllers/accounts_controller.py:521 +#: erpnext/accounts/services/deferred_accounting.py:30 msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" @@ -46777,7 +46889,7 @@ msgstr "" msgid "Row #{0}: Product Bundle {1} is disabled and cannot be used in transactions." msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:425 +#: erpnext/public/js/utils/barcode_scanner.js:433 msgid "Row #{0}: Qty increased by {1}" msgstr "" @@ -46806,7 +46918,7 @@ msgstr "" msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}" msgstr "" -#: erpnext/controllers/accounts_controller.py:996 +#: erpnext/controllers/accounts_controller.py:923 msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" @@ -46814,7 +46926,7 @@ msgstr "" msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1718 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1729 msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" @@ -46840,7 +46952,7 @@ msgstr "" msgid "Row #{0}: Rejected Warehouse is mandatory for the rejected Item {1}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:163 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:166 msgid "Row #{0}: Repair cost {1} exceeds available amount {2} for Purchase Invoice {3} and Account {4}" msgstr "" @@ -46867,7 +46979,7 @@ msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" "\t\t\t\t\tthis validation." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:349 +#: erpnext/manufacturing/doctype/work_order/work_order.py:355 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" @@ -46875,7 +46987,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:123 +#: erpnext/stock/services/serial_batch_bundle_service.py:125 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46891,15 +47003,15 @@ msgstr "" msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" -#: erpnext/controllers/accounts_controller.py:549 +#: erpnext/accounts/services/deferred_accounting.py:53 msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date" msgstr "" -#: erpnext/controllers/accounts_controller.py:543 +#: erpnext/accounts/services/deferred_accounting.py:49 msgid "Row #{0}: Service Start Date cannot be greater than Service End Date" msgstr "" -#: erpnext/controllers/accounts_controller.py:537 +#: erpnext/accounts/services/deferred_accounting.py:43 msgid "Row #{0}: Service Start and End Date is required for deferred accounting" msgstr "" @@ -46915,11 +47027,11 @@ msgstr "" msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:454 +#: erpnext/manufacturing/doctype/work_order/work_order.py:460 msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:409 +#: erpnext/manufacturing/doctype/work_order/work_order.py:415 msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order." msgstr "" @@ -46943,7 +47055,7 @@ msgstr "" msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}" msgstr "Řádek č. {0}: Stav musí být pro diskont faktury {2} nastaven na {1}" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:442 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:459 msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice" msgstr "" @@ -46951,19 +47063,19 @@ msgstr "" msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}." msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1663 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1674 msgid "Row #{0}: Stock cannot be reserved for a non-stock Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1676 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1687 msgid "Row #{0}: Stock cannot be reserved in group warehouse {1}." msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1690 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1701 msgid "Row #{0}: Stock is already reserved for the Item {1}." msgstr "" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:557 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:574 msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}." msgstr "" @@ -46971,12 +47083,12 @@ msgstr "" msgid "Row #{0}: Stock not available to reserve for Item {1} against Batch {2} in Warehouse {3}." msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1254 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1704 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1263 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1715 msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:944 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:950 msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" @@ -46984,7 +47096,7 @@ msgstr "" msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:141 +#: erpnext/stock/services/serial_batch_bundle_service.py:143 msgid "Row #{0}: The batch {1} has already expired." msgstr "" @@ -46996,7 +47108,7 @@ msgstr "" msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." msgstr "" -#: erpnext/stock/doctype/item/item.py:601 +#: erpnext/stock/doctype/item/item.py:606 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" @@ -47016,7 +47128,7 @@ msgstr "" msgid "Row #{0}: Valuation Rate for Item {1} must be the same across all rows, as it is the item's company-wide Standard Cost." msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:57 +#: erpnext/stock/services/serial_batch_bundle_service.py:59 msgid "Row #{0}: Warehouse {1} does not match with the warehouse {2} in Serial and Batch Bundle {3}." msgstr "" @@ -47069,7 +47181,7 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" -#: erpnext/stock/doctype/item/item.py:1557 +#: erpnext/stock/doctype/item/item.py:1562 msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." msgstr "" @@ -47089,23 +47201,23 @@ msgstr "" msgid "Row #{idx}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor." msgstr "" -#: erpnext/controllers/buying_controller.py:633 +#: erpnext/controllers/buying_controller.py:641 msgid "Row #{idx}: Item rate has been updated as per valuation rate since its an internal stock transfer." msgstr "" -#: erpnext/controllers/buying_controller.py:1069 +#: erpnext/controllers/buying_controller.py:1077 msgid "Row #{idx}: Please enter a location for the asset item {item_code}." msgstr "" -#: erpnext/controllers/buying_controller.py:726 +#: erpnext/controllers/buying_controller.py:734 msgid "Row #{idx}: Received Qty must be equal to Accepted + Rejected Qty for Item {item_code}." msgstr "" -#: erpnext/controllers/buying_controller.py:739 +#: erpnext/controllers/buying_controller.py:747 msgid "Row #{idx}: {field_label} can not be negative for item {item_code}." msgstr "" -#: erpnext/controllers/buying_controller.py:692 +#: erpnext/controllers/buying_controller.py:700 msgid "Row #{idx}: {field_label} is mandatory." msgstr "" @@ -47113,7 +47225,7 @@ msgstr "" msgid "Row #{idx}: {from_warehouse_field} and {to_warehouse_field} cannot be same." msgstr "" -#: erpnext/controllers/buying_controller.py:1185 +#: erpnext/controllers/buying_controller.py:1193 msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" @@ -47157,19 +47269,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:770 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:762 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:716 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:556 +#: erpnext/stock/doctype/material_request/material_request.py:595 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -47410,7 +47522,7 @@ msgstr "" msgid "Row {0}: Task {1} does not belong to Project {2}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:178 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:187 msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated." msgstr "" @@ -47447,11 +47559,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:943 -#: erpnext/manufacturing/doctype/work_order/work_order.py:483 +#: erpnext/manufacturing/doctype/work_order/work_order.py:489 msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}" msgstr "" -#: erpnext/controllers/accounts_controller.py:938 +#: erpnext/controllers/accounts_controller.py:865 msgid "Row {0}: user has not applied the rule {1} on the item {2}" msgstr "" @@ -47487,7 +47599,7 @@ msgstr "" msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" -#: erpnext/controllers/buying_controller.py:1051 +#: erpnext/controllers/buying_controller.py:1059 msgid "Row {idx}: Asset Naming Series is mandatory for the auto creation of assets for item {item_code}." msgstr "" @@ -47521,7 +47633,7 @@ msgstr "" msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually." msgstr "" -#: erpnext/controllers/accounts_controller.py:275 +#: erpnext/controllers/accounts_controller.py:279 msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" @@ -47600,8 +47712,8 @@ msgstr "" msgid "Run parallel job cards in a workstation" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:741 -#: erpnext/public/js/templates/shop_floor_template.html:743 +#: erpnext/public/js/templates/shop_floor_template.html:761 +#: erpnext/public/js/templates/shop_floor_template.html:763 msgid "Run quality check" msgstr "" @@ -47655,7 +47767,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1268 +#: erpnext/public/js/utils.js:1280 msgid "SLA is on hold since {0}" msgstr "" @@ -47752,8 +47864,8 @@ msgstr "" #: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143 #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/company/company.py:525 -#: erpnext/setup/doctype/company/company.py:718 +#: erpnext/setup/doctype/company/company.py:527 +#: erpnext/setup/doctype/company/company.py:720 #: erpnext/setup/doctype/company/company_dashboard.py:9 #: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12 #: erpnext/setup/install.py:408 @@ -47768,7 +47880,7 @@ msgstr "" msgid "Sales & Purchase" msgstr "" -#: erpnext/setup/doctype/company/company.py:718 +#: erpnext/setup/doctype/company/company.py:720 msgid "Sales Account" msgstr "" @@ -47866,8 +47978,8 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json #: erpnext/accounts/print_format/sales_auditing_voucher/sales_auditing_voucher.html:5 #: erpnext/accounts/report/gross_profit/gross_profit.js:30 -#: erpnext/accounts/report/gross_profit/gross_profit.py:287 -#: erpnext/accounts/report/gross_profit/gross_profit.py:294 +#: erpnext/accounts/report/gross_profit/gross_profit.py:289 +#: erpnext/accounts/report/gross_profit/gross_profit.py:296 #: erpnext/crm/doctype/contract/contract.json #: erpnext/projects/doctype/timesheet/timesheet.json #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json @@ -47966,7 +48078,7 @@ msgstr "" msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." msgstr "" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:614 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:631 msgid "Sales Invoice {0} has already been submitted" msgstr "" @@ -48018,7 +48130,6 @@ msgstr "" #. Label of the sales_order (Link) field in DocType 'Purchase Receipt Item' #. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation #. Entry' -#. Label of a Link in the Subcontracting Workspace #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json @@ -48058,7 +48169,7 @@ msgstr "" #: erpnext/setup/doctype/authorization_rule/authorization_rule.json #: erpnext/stock/doctype/delivery_note/delivery_note.js:157 #: erpnext/stock/doctype/delivery_note/delivery_note.js:223 -#: erpnext/stock/doctype/material_request/material_request.js:236 +#: erpnext/stock/doctype/material_request/material_request.js:239 #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -48067,9 +48178,7 @@ msgstr "" #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:159 #: erpnext/stock/report/delayed_order_report/delayed_order_report.js:30 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:74 -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json #: erpnext/workspace_sidebar/selling.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Sales Order" msgstr "" @@ -48172,7 +48281,7 @@ msgstr "" msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}" msgstr "" -#: erpnext/projects/doctype/project/project.py:256 +#: erpnext/projects/doctype/project/project.py:258 msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" @@ -48181,11 +48290,11 @@ msgstr "" msgid "Sales Order {0} is not available for production" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 msgid "Sales Order {0} is not submitted" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:559 +#: erpnext/manufacturing/doctype/work_order/work_order.py:565 msgid "Sales Order {0} is not valid" msgstr "" @@ -48242,7 +48351,7 @@ msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:130 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1254 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1256 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:114 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:196 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:74 @@ -48348,12 +48457,12 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:158 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:136 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1251 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1253 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:120 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:193 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:80 #: erpnext/accounts/report/gross_profit/gross_profit.js:50 -#: erpnext/accounts/report/gross_profit/gross_profit.py:402 +#: erpnext/accounts/report/gross_profit/gross_profit.py:404 #: erpnext/crm/workspace/crm/crm.json #: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json #: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json @@ -48443,7 +48552,7 @@ msgstr "" msgid "Sales Representative" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:1004 +#: erpnext/accounts/report/gross_profit/gross_profit.py:1006 #: erpnext/stock/doctype/delivery_note/delivery_note.js:270 msgid "Sales Return" msgstr "" @@ -48465,10 +48574,8 @@ msgid "Sales Summary" msgstr "" #. Label of the sales_tax_template (Link) field in DocType 'Tax Rule' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/setup/doctype/company/company.js:149 -#: erpnext/workspace_sidebar/taxes.json msgid "Sales Tax Template" msgstr "" @@ -48477,11 +48584,6 @@ msgstr "" msgid "Sales Tax Withholding Category" msgstr "" -#. Label of a Workspace Sidebar Item -#: erpnext/workspace_sidebar/accounts_setup.json -msgid "Sales Taxes" -msgstr "" - #. Label of the taxes (Table) field in DocType 'POS Invoice' #. Label of the taxes (Table) field in DocType 'Sales Invoice' #. Name of a DocType @@ -48545,7 +48647,7 @@ msgstr "" msgid "Sales Team" msgstr "" -#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:56 +#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:62 msgid "Sales Value" msgstr "" @@ -48606,7 +48708,7 @@ msgid "Sample Quantity" msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:269 -#: erpnext/stock/doctype/stock_entry/stock_entry.js:557 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:556 msgid "Sample Retention Stock Entry" msgstr "" @@ -48633,7 +48735,7 @@ msgstr "" msgid "Sanctioned" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:884 +#: erpnext/public/js/shop_floor/shop_floor.js:920 msgid "Save & Continue" msgstr "" @@ -48647,7 +48749,7 @@ msgstr "" msgid "Save the currently opened form" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:845 +#: erpnext/public/js/shop_floor/shop_floor.js:881 msgid "Saving job card..." msgstr "" @@ -48677,7 +48779,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/barcode_scanner.js:236 +#: erpnext/public/js/utils/barcode_scanner.js:241 #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json @@ -48694,7 +48796,7 @@ msgid "Scan Batch No" msgstr "" #: erpnext/public/js/shop_floor/shop_floor.js:88 -#: erpnext/public/js/shop_floor/shop_floor.js:1396 +#: erpnext/public/js/shop_floor/shop_floor.js:1431 msgid "Scan Job Card" msgstr "" @@ -48709,11 +48811,11 @@ msgstr "" msgid "Scan Serial No" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:200 +#: erpnext/public/js/utils/barcode_scanner.js:205 msgid "Scan barcode for item {0}" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1370 +#: erpnext/public/js/shop_floor/shop_floor.js:1405 msgid "Scan job card" msgstr "" @@ -48721,7 +48823,7 @@ msgstr "" msgid "Scan mode enabled, existing quantity will not be fetched." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1399 +#: erpnext/public/js/shop_floor/shop_floor.js:1434 msgid "Scan or enter Job Card" msgstr "" @@ -48731,14 +48833,14 @@ msgstr "" msgid "Scanned Cheque" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:268 +#: erpnext/public/js/utils/barcode_scanner.js:273 msgid "Scanned Quantity" msgstr "" #. Label of the schedule_date (Date) field in DocType 'Depreciation Schedule' #. Label of the schedule_date (Datetime) field in DocType 'Production Plan Sub #. Assembly Item' -#: erpnext/assets/doctype/asset/asset.js:383 +#: erpnext/assets/doctype/asset/asset.js:391 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json msgid "Schedule Date" @@ -48872,7 +48974,7 @@ msgstr "" msgid "Scrap" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:168 +#: erpnext/assets/doctype/asset/asset.js:176 msgid "Scrap Asset" msgstr "" @@ -48933,15 +49035,15 @@ msgstr "" msgid "Search transactions" msgstr "" -#: erpnext/stock/doctype/item/item.js:1095 +#: erpnext/stock/doctype/item/item.js:1116 msgid "Search values..." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1368 +#: erpnext/public/js/shop_floor/shop_floor.js:1403 msgid "Search work orders" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:150 +#: erpnext/public/js/shop_floor/shop_floor.js:176 msgid "Search work orders…" msgstr "" @@ -49053,7 +49155,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:572 +#: erpnext/public/js/utils.js:584 msgid "Select Alternate Item" msgstr "" @@ -49061,7 +49163,7 @@ msgstr "" msgid "Select Alternative Items for Sales Order" msgstr "" -#: erpnext/stock/doctype/item/item.js:1221 +#: erpnext/stock/doctype/item/item.js:1242 msgid "Select Attribute Values" msgstr "" @@ -49073,9 +49175,9 @@ msgstr "" msgid "Select BOM and Qty for Production" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:449 -#: erpnext/stock/doctype/pick_list/pick_list.js:398 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:243 +#: erpnext/public/js/utils/sales_common.js:447 +#: erpnext/stock/doctype/pick_list/pick_list.js:399 msgid "Select Batch No" msgstr "" @@ -49202,20 +49304,20 @@ msgstr "" msgid "Select Possible Supplier" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1125 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1129 #: erpnext/stock/doctype/pick_list/pick_list.js:224 msgid "Select Quantity" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:449 -#: erpnext/stock/doctype/pick_list/pick_list.js:398 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:243 +#: erpnext/public/js/utils/sales_common.js:447 +#: erpnext/stock/doctype/pick_list/pick_list.js:399 msgid "Select Serial No" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:452 -#: erpnext/stock/doctype/pick_list/pick_list.js:401 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:246 +#: erpnext/public/js/utils/sales_common.js:450 +#: erpnext/stock/doctype/pick_list/pick_list.js:402 msgid "Select Serial and Batch" msgstr "" @@ -49240,8 +49342,8 @@ msgstr "" msgid "Select Time" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:28 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:28 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:35 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:35 msgid "Select View" msgstr "" @@ -49253,7 +49355,7 @@ msgstr "" msgid "Select Warehouse..." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:551 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:578 msgid "Select Warehouses to get Stock for Materials Planning" msgstr "" @@ -49265,7 +49367,7 @@ msgstr "" msgid "Select a Company this Employee belongs to." msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:221 +#: erpnext/buying/doctype/supplier/supplier.js:230 msgid "Select a Customer" msgstr "" @@ -49277,7 +49379,7 @@ msgstr "Vyberte výchozí prioritu." msgid "Select a Payment Method." msgstr "" -#: erpnext/selling/doctype/customer/customer.js:253 +#: erpnext/selling/doctype/customer/customer.js:262 msgid "Select a Supplier" msgstr "" @@ -49289,7 +49391,7 @@ msgstr "" msgid "Select a company" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:421 +#: erpnext/public/js/shop_floor/shop_floor.js:449 msgid "Select a machine or work order to begin" msgstr "" @@ -49304,7 +49406,7 @@ msgstr "" msgid "Select all" msgstr "" -#: erpnext/stock/doctype/item/item.js:1563 +#: erpnext/stock/doctype/item/item.js:1584 msgid "Select an Item Group." msgstr "" @@ -49321,7 +49423,7 @@ msgstr "" msgid "Select an item from each set to be used in the Sales Order." msgstr "" -#: erpnext/stock/doctype/item/item.js:1235 +#: erpnext/stock/doctype/item/item.js:1256 msgid "Select at least one attribute value." msgstr "" @@ -49339,7 +49441,7 @@ msgstr "" msgid "Select date" msgstr "" -#: erpnext/controllers/accounts_controller.py:1403 +#: erpnext/controllers/accounts_controller.py:1330 msgid "Select finance book for the item {0} at row {1}" msgstr "" @@ -49375,16 +49477,16 @@ msgstr "" msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1231 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1242 msgid "Select the Item to be manufactured." msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:988 +#: erpnext/manufacturing/doctype/bom/bom.js:992 msgid "Select the Item to be manufactured. The Item name, UoM, Company, and Currency will be fetched automatically." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:432 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:445 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 msgid "Select the Warehouse" msgstr "" @@ -49392,7 +49494,7 @@ msgstr "" msgid "Select the customer or supplier." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:940 +#: erpnext/assets/doctype/asset/asset.js:948 msgid "Select the date" msgstr "" @@ -49410,7 +49512,7 @@ msgstr "" msgid "Select the modules that you plan to implement" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:1007 +#: erpnext/manufacturing/doctype/bom/bom.js:1011 msgid "Select the raw materials (Items) required to manufacture the Item" msgstr "" @@ -49418,7 +49520,7 @@ msgstr "" msgid "Select variant item code for the template item {0}" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:708 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:735 msgid "Select whether to get items from a Sales Order or a Material Request. For now select Sales Order.\n" " A Production Plan can also be created manually where you can select the Items to manufacture." msgstr "" @@ -49472,22 +49574,22 @@ msgstr "" msgid "Self delivery" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:647 +#: erpnext/assets/doctype/asset/asset.js:655 #: erpnext/stock/doctype/batch/batch_dashboard.py:9 #: erpnext/stock/doctype/item/item_dashboard.py:20 msgid "Sell" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:176 -#: erpnext/assets/doctype/asset/asset.js:636 +#: erpnext/assets/doctype/asset/asset.js:184 +#: erpnext/assets/doctype/asset/asset.js:644 msgid "Sell Asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:641 +#: erpnext/assets/doctype/asset/asset.js:649 msgid "Sell Qty" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:657 +#: erpnext/assets/doctype/asset/asset.js:665 msgid "Sell quantity cannot exceed the asset quantity" msgstr "" @@ -49495,7 +49597,7 @@ msgstr "" msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:653 +#: erpnext/assets/doctype/asset/asset.js:661 msgid "Sell quantity must be greater than zero" msgstr "" @@ -49529,7 +49631,7 @@ msgstr "" msgid "Selling" msgstr "" -#: erpnext/accounts/report/gross_profit/gross_profit.py:361 +#: erpnext/accounts/report/gross_profit/gross_profit.py:363 msgid "Selling Amount" msgstr "" @@ -49566,7 +49668,7 @@ msgstr "" msgid "Selling Setup" msgstr "Nastavení prodeje" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:214 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:232 msgid "Selling must be checked, if Applicable For is selected as {0}" msgstr "" @@ -49764,7 +49866,7 @@ msgstr "" #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:170 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json @@ -49801,7 +49903,7 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:299 msgid "Serial No Bundle is mandatory for Item {0}" msgstr "" @@ -49822,11 +49924,11 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2762 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2768 msgid "Serial No Reserved" msgstr "" -#: erpnext/stock/doctype/item/item.py:496 +#: erpnext/stock/doctype/item/item.py:501 msgid "Serial No Series Overlap" msgstr "" @@ -49879,7 +49981,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1228 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1229 msgid "Serial No is mandatory" msgstr "" @@ -49891,7 +49993,7 @@ msgstr "" msgid "Serial No {0} already exists" msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:342 +#: erpnext/public/js/utils/barcode_scanner.js:347 msgid "Serial No {0} already scanned" msgstr "" @@ -49905,15 +50007,15 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3560 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3566 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:379 msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:435 +#: erpnext/public/js/utils/barcode_scanner.js:443 msgid "Serial No {0} is already added" msgstr "" @@ -49921,7 +50023,7 @@ msgstr "" msgid "Serial No {0} is already assigned to customer {1}. Can only be returned against the customer {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:483 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:484 msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" @@ -49941,12 +50043,12 @@ msgstr "" msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:292 +#: erpnext/public/js/utils/barcode_scanner.js:297 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 #: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:170 msgid "Serial Nos" msgstr "" @@ -49960,15 +50062,15 @@ msgstr "" msgid "Serial Nos / Batches" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2029 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2030 msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2442 +#: erpnext/stock/stock_ledger.py:2490 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:384 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:385 msgid "Serial Nos {0} are already Delivered. You cannot use them again in Manufacture / Repack entry." msgstr "" @@ -50033,7 +50135,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:156 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:138 #: erpnext/stock/doctype/stock_settings/stock_settings.json #: erpnext/stock/report/available_serial_no/available_serial_no.py:188 #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31 @@ -50045,19 +50147,19 @@ msgstr "" msgid "Serial and Batch Bundle" msgstr "" -#: erpnext/stock/doctype/item/item.py:1150 +#: erpnext/stock/doctype/item/item.py:1155 msgid "Serial and Batch Bundle Exists" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2265 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2267 msgid "Serial and Batch Bundle created" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2359 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2363 msgid "Serial and Batch Bundle updated" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:99 +#: erpnext/stock/services/serial_batch_bundle_service.py:101 msgid "Serial and Batch Bundle {0} is already used in {1} {2}." msgstr "" @@ -50065,7 +50167,7 @@ msgstr "" msgid "Serial and Batch Bundle {0} is not submitted" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2335 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2337 msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" @@ -50093,7 +50195,7 @@ msgstr "" msgid "Serial and Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:152 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:153 msgid "Serial and Batch No for Item Disabled" msgstr "" @@ -50134,7 +50236,7 @@ msgstr "" msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:143 +#: erpnext/buying/doctype/supplier/supplier.py:151 msgid "Series is mandatory" msgstr "" @@ -50265,7 +50367,7 @@ msgstr "" msgid "Service Level Agreement for {0} {1} already exists." msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:771 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:774 msgid "Service Level Agreement has been changed to {0}." msgstr "" @@ -50414,7 +50516,7 @@ msgstr "" msgid "Set New Release Date" msgstr "" -#: erpnext/stock/doctype/item/item.js:203 +#: erpnext/stock/doctype/item/item.js:218 msgid "Set Opening Stock" msgstr "" @@ -50439,7 +50541,7 @@ msgstr "" msgid "Set Posting Date" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:1034 +#: erpnext/manufacturing/doctype/bom/bom.js:1038 msgid "Set Process Loss Item Quantity" msgstr "" @@ -50475,7 +50577,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:574 +#: erpnext/public/js/utils/sales_common.js:572 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50493,7 +50595,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:571 +#: erpnext/public/js/utils/sales_common.js:569 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50519,7 +50621,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:598 +#: erpnext/public/js/utils/sales_common.js:596 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50546,11 +50648,11 @@ msgstr "" msgid "Set closing balance as per bank statement" msgstr "" -#: erpnext/setup/doctype/company/company.py:615 +#: erpnext/setup/doctype/company/company.py:617 msgid "Set default inventory account for perpetual inventory" msgstr "" -#: erpnext/setup/doctype/company/company.py:641 +#: erpnext/setup/doctype/company/company.py:643 msgid "Set default {0} account for non stock items" msgstr "" @@ -50566,7 +50668,7 @@ msgstr "" msgid "Set incoming rate as zero for expired Batch" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:1024 +#: erpnext/manufacturing/doctype/bom/bom.js:1028 msgid "Set quantity of process loss item:" msgstr "" @@ -50582,7 +50684,7 @@ msgstr "" msgid "Set targets Item Group-wise for this Sales Person." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1288 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1299 msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)" msgstr "" @@ -50693,7 +50795,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:919 -#: erpnext/manufacturing/doctype/work_order/work_order.py:929 +#: erpnext/manufacturing/doctype/work_order/work_order.py:935 msgid "Setting {0} is required" msgstr "" @@ -50764,44 +50866,34 @@ msgstr "" #. Label of the share_balance (Table) field in DocType 'Shareholder' #. Name of a report #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/share_balance/share_balance.json #: erpnext/accounts/doctype/shareholder/shareholder.js:21 #: erpnext/accounts/doctype/shareholder/shareholder.json #: erpnext/accounts/report/share_balance/share_balance.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Balance" msgstr "" #. Name of a report #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/shareholder/shareholder.js:27 #: erpnext/accounts/report/share_ledger/share_ledger.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Ledger" msgstr "" #. Label of a Card Break in the Invoicing Workspace -#. Name of a Workspace #. Label of a Desktop Icon -#. Title of a Workspace Sidebar #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/accounts/workspace/share_management/share_management.json #: erpnext/desktop_icon/share_management.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Management" msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/share_transfer/share_transfer.json #: erpnext/accounts/report/share_ledger/share_ledger.py:59 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Share Transfer" msgstr "" @@ -50818,14 +50910,12 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/shareholder/shareholder.json #: erpnext/accounts/report/share_balance/share_balance.js:16 #: erpnext/accounts/report/share_balance/share_balance.py:55 #: erpnext/accounts/report/share_ledger/share_ledger.js:16 #: erpnext/accounts/report/share_ledger/share_ledger.py:51 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/share_management.json msgid "Shareholder" msgstr "" @@ -50839,7 +50929,7 @@ msgid "Shelf Life in Days" msgstr "" #. Label of the shift (Link) field in DocType 'Depreciation Schedule' -#: erpnext/assets/doctype/asset/asset.js:396 +#: erpnext/assets/doctype/asset/asset.js:404 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Shift" msgstr "" @@ -50911,7 +51001,7 @@ msgstr "" msgid "Shipment details" msgstr "" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:644 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:661 msgid "Shipments" msgstr "" @@ -51061,8 +51151,8 @@ msgstr "" #. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/workstation/workstation.js:18 #: erpnext/manufacturing/page/shop_floor/shop_floor.js:4 -#: erpnext/public/js/shop_floor/shop_floor.js:134 -#: erpnext/public/js/shop_floor/shop_floor.js:171 +#: erpnext/public/js/shop_floor/shop_floor.js:160 +#: erpnext/public/js/shop_floor/shop_floor.js:198 #: erpnext/workspace_sidebar/manufacturing.json msgid "Shop Floor" msgstr "" @@ -51080,7 +51170,7 @@ msgstr "" msgid "Shopping Cart" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:806 +#: erpnext/public/js/templates/shop_floor_template.html:826 msgid "Short" msgstr "" @@ -51232,7 +51322,7 @@ msgstr "" msgid "Show Opening Entries" msgstr "" -#: erpnext/accounts/report/cash_flow/cash_flow.js:43 +#: erpnext/accounts/report/cash_flow/cash_flow.js:50 msgid "Show Opening and Closing Balance" msgstr "" @@ -51277,7 +51367,7 @@ msgstr "" msgid "Show Variant Attributes" msgstr "" -#: erpnext/stock/doctype/item/item.js:227 +#: erpnext/stock/doctype/item/item.js:242 msgid "Show Variants" msgstr "" @@ -51349,7 +51439,7 @@ msgstr "" msgid "Show taxes as table in print" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1367 +#: erpnext/public/js/shop_floor/shop_floor.js:1402 msgid "Show this help" msgstr "" @@ -51362,10 +51452,10 @@ msgstr "" msgid "Show with upcoming revenue/expense" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.js:51 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:58 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:137 #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:75 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:52 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:59 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:71 #: erpnext/accounts/report/trial_balance/trial_balance.js:95 #: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:81 @@ -51376,7 +51466,7 @@ msgstr "" msgid "Show {0}" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:311 +#: erpnext/public/js/shop_floor/shop_floor.js:339 msgid "Showing all {0}" msgstr "" @@ -51468,11 +51558,11 @@ msgstr "" msgid "Since you have enabled 'Track Semi Finished Goods', at least one operation must have 'Is Final Finished Good' checked. For that set the FG / Semi FG Item as {0} against an operation." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:134 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:142 msgid "Since {0} are Serial No/Batch No items, you cannot enable 'Recreate Stock Ledgers' in Repost Item Valuation." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:114 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:122 msgid "Since {0} has 'Update Stock' disabled, you cannot create repost item valuation against it" msgstr "" @@ -51494,7 +51584,7 @@ msgstr "" msgid "Single Tier Program" msgstr "" -#: erpnext/stock/doctype/item/item.js:252 +#: erpnext/stock/doctype/item/item.js:267 msgid "Single Variant" msgstr "" @@ -51529,7 +51619,7 @@ msgstr "" msgid "Skype ID" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:775 +#: erpnext/public/js/templates/shop_floor_template.html:795 msgid "Slot available — start a job from the queue." msgstr "" @@ -51575,7 +51665,7 @@ msgstr "" msgid "Solvency Ratios" msgstr "" -#: erpnext/controllers/accounts_controller.py:1684 +#: erpnext/controllers/accounts_controller.py:1611 msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager." msgstr "" @@ -51639,7 +51729,7 @@ msgstr "" msgid "Source Location" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1035 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1039 msgid "Source Manufacture Entry" msgstr "" @@ -51686,11 +51776,11 @@ msgstr "Zdrojový typ" #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 -#: erpnext/public/js/utils/sales_common.js:570 +#: erpnext/public/js/utils/sales_common.js:568 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:820 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:819 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Source Warehouse" msgstr "" @@ -51706,7 +51796,7 @@ msgstr "" msgid "Source Warehouse Address Link" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1184 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1193 msgid "Source Warehouse is mandatory for the Item {0}." msgstr "" @@ -51715,7 +51805,7 @@ msgstr "" msgid "Source Warehouse is required for item {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:368 +#: erpnext/manufacturing/doctype/work_order/work_order.py:374 msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order." msgstr "" @@ -51780,15 +51870,15 @@ msgstr "" msgid "Spent" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:697 +#: erpnext/assets/doctype/asset/asset.js:705 #: erpnext/stock/doctype/batch/batch.js:104 #: erpnext/stock/doctype/batch/batch.js:185 #: erpnext/support/doctype/issue/issue.js:114 msgid "Split" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:152 -#: erpnext/assets/doctype/asset/asset.js:681 +#: erpnext/assets/doctype/asset/asset.js:160 +#: erpnext/assets/doctype/asset/asset.js:689 msgid "Split Asset" msgstr "" @@ -51812,7 +51902,7 @@ msgstr "" msgid "Split Issue" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:687 +#: erpnext/assets/doctype/asset/asset.js:695 msgid "Split Qty" msgstr "" @@ -51887,13 +51977,13 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:170 msgid "Stale Days should start from 1." msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:485 -#: erpnext/tests/utils.py:275 +#: erpnext/tests/utils.py:276 msgid "Standard Buying" msgstr "" @@ -51901,6 +51991,7 @@ msgstr "" #. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock #. Settings' #: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_dashboard.py:36 #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Standard Cost" msgstr "" @@ -51919,8 +52010,8 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:493 -#: erpnext/stock/doctype/item/item.py:291 erpnext/tests/utils.py:283 -#: erpnext/tests/utils.py:2522 +#: erpnext/stock/doctype/item/item.py:296 erpnext/tests/utils.py:284 +#: erpnext/tests/utils.py:2524 msgid "Standard Selling" msgstr "" @@ -51989,7 +52080,7 @@ msgstr "" msgid "Start / Resume" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1376 +#: erpnext/public/js/shop_floor/shop_floor.js:1411 msgid "Start / Resume job" msgstr "" @@ -52006,8 +52097,8 @@ msgid "Start Date should be lower than End Date" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.js:660 -#: erpnext/public/js/shop_floor/shop_floor.js:674 -#: erpnext/public/js/templates/shop_floor_template.html:708 +#: erpnext/public/js/shop_floor/shop_floor.js:710 +#: erpnext/public/js/templates/shop_floor_template.html:728 msgid "Start Job" msgstr "" @@ -52023,7 +52114,7 @@ msgstr "" msgid "Start Time can't be greater than or equal to End Time for {0}." msgstr "" -#: erpnext/projects/doctype/timesheet/timesheet.js:62 +#: erpnext/projects/doctype/timesheet/timesheet.js:63 msgid "Start Timer" msgstr "" @@ -52035,11 +52126,11 @@ msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:17 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:144 #: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:81 -#: erpnext/public/js/financial_statements.js:435 +#: erpnext/public/js/financial_statements.js:472 msgid "Start Year" msgstr "" -#: erpnext/accounts/report/financial_statements.py:130 +#: erpnext/accounts/report/financial_statements.py:307 msgid "Start Year and End Year are mandatory" msgstr "" @@ -52148,7 +52239,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:788 +#: erpnext/projects/doctype/project/project.py:818 msgid "Status must be Cancelled or Completed" msgstr "" @@ -52237,7 +52328,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/selling/doctype/quotation_item/quotation_item.json -#: erpnext/stock/doctype/item/item.js:166 +#: erpnext/stock/doctype/item/item.js:181 #: erpnext/stock/doctype/warehouse/warehouse.js:62 #: erpnext/stock/report/stock_balance/stock_balance.json #: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:107 @@ -52294,7 +52385,7 @@ msgstr "" msgid "Stock Delivered But Not Billed" msgstr "" -#: erpnext/setup/doctype/company/company.py:217 +#: erpnext/setup/doctype/company/company.py:219 msgid "Stock Delivered But Not Billed Account cannot be changed or disabled since account {0} contains outstanding Delivery Notes: {1}" msgstr "" @@ -52328,11 +52419,10 @@ msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:150 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:132 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/manufacturing.json #: erpnext/workspace_sidebar/stock.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Stock Entry" msgstr "" @@ -52379,6 +52469,18 @@ msgstr "" msgid "Stock Entry {0} is not submitted" msgstr "" +#. Label of the stock_expense_section (Section Break) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Stock Expense" +msgstr "" + +#. Label of the stock_expense_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Stock Expense Accounting" +msgstr "" + #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147 msgid "Stock Expenses" @@ -52401,7 +52503,7 @@ msgstr "" #. Label of a Workspace Sidebar Item #: erpnext/public/js/controllers/stock_controller.js:67 #: erpnext/public/js/utils/ledger_preview.js:37 -#: erpnext/stock/doctype/item/item.js:176 +#: erpnext/stock/doctype/item/item.js:191 #: erpnext/stock/doctype/item/item_dashboard.py:8 #: erpnext/stock/report/stock_ledger/stock_ledger.json #: erpnext/stock/workspace/stock/stock.json @@ -52519,7 +52621,7 @@ msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item -#: erpnext/stock/doctype/item/item.js:186 +#: erpnext/stock/doctype/item/item.js:201 #: erpnext/stock/report/stock_projected_qty/stock_projected_qty.json #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json @@ -52572,9 +52674,9 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/setup/workspace/home/home.json -#: erpnext/stock/doctype/item/item.py:677 +#: erpnext/stock/doctype/item/item.py:682 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/stock/doctype/stock_settings/stock_settings.js:155 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:137 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Stock Reconciliation" @@ -52591,7 +52693,7 @@ msgstr "" msgid "Stock Reconciliation that revalues on-hand stock to this standard rate: auto-created when the rate is changed here, or the reconciliation that captured this rate (opening entry or rate change)." msgstr "" -#: erpnext/stock/doctype/item/item.py:677 +#: erpnext/stock/doctype/item/item.py:682 msgid "Stock Reconciliations" msgstr "" @@ -52610,15 +52712,15 @@ msgstr "" #. Label of the stock_reservation_tab (Tab Break) field in DocType 'Stock #. Settings' -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:263 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:271 -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:277 #: erpnext/manufacturing/doctype/production_plan/production_plan.js:289 #: erpnext/manufacturing/doctype/production_plan/production_plan.js:297 #: erpnext/manufacturing/doctype/production_plan/production_plan.js:303 -#: erpnext/manufacturing/doctype/work_order/work_order.js:948 -#: erpnext/manufacturing/doctype/work_order/work_order.js:957 -#: erpnext/manufacturing/doctype/work_order/work_order.js:964 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:315 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:323 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:329 +#: erpnext/manufacturing/doctype/work_order/work_order.js:952 +#: erpnext/manufacturing/doctype/work_order/work_order.js:961 +#: erpnext/manufacturing/doctype/work_order/work_order.js:968 #: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:14 #: erpnext/public/js/stock_reservation.js:12 #: erpnext/selling/doctype/sales_order/sales_order.js:109 @@ -52631,13 +52733,13 @@ msgstr "" #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:869 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1679 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1693 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1707 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1721 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1738 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1266 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1677 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1690 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1704 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1718 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1732 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1749 #: erpnext/stock/doctype/stock_settings/stock_settings.json #: erpnext/stock/doctype/stock_settings/stock_settings.py:225 #: erpnext/stock/doctype/stock_settings/stock_settings.py:237 @@ -52650,7 +52752,7 @@ msgstr "" msgid "Stock Reservation" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1849 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1860 msgid "Stock Reservation Entries Cancelled" msgstr "" @@ -52658,7 +52760,7 @@ msgstr "" #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 #: erpnext/selling/doctype/sales_order/services/reservation.py:133 -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1810 msgid "Stock Reservation Entries Created" msgstr "" @@ -52685,7 +52787,7 @@ msgstr "" msgid "Stock Reservation Entry created against a Pick List cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." msgstr "" -#: erpnext/stock/doctype/delivery_note/delivery_note.py:567 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:584 msgid "Stock Reservation Warehouse Mismatch" msgstr "" @@ -52725,7 +52827,7 @@ msgstr "" #: erpnext/selling/doctype/selling_settings/selling_settings.py:115 #: erpnext/setup/doctype/company/company.json #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json -#: erpnext/stock/doctype/item/item.js:482 +#: erpnext/stock/doctype/item/item.js:497 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:681 #: erpnext/stock/doctype/stock_settings/stock_settings.json #: erpnext/stock/workspace/stock/stock.json @@ -52962,15 +53064,15 @@ msgstr "" msgid "Stock cannot be reserved in group warehouse {0}." msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1611 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1622 msgid "Stock cannot be reserved in the group warehouse {0}." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:906 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:912 msgid "Stock cannot be updated against the following Delivery Notes: {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:982 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:988 msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item." msgstr "" @@ -52987,7 +53089,7 @@ msgstr "" msgid "Stock frozen up to" msgstr "" -#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1151 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1160 msgid "Stock has been unreserved for work order {0}." msgstr "" @@ -53030,15 +53132,15 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:840 +#: erpnext/manufacturing/doctype/work_order/work_order.py:846 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" -#: erpnext/setup/doctype/company/company.py:452 +#: erpnext/setup/doctype/company/company.py:454 #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 -#: erpnext/stock/doctype/item/item.py:329 -#: erpnext/stock/doctype/item/item.py:1776 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:334 +#: erpnext/stock/doctype/item/item.py:1781 erpnext/tests/utils.py:249 msgid "Stores" msgstr "" @@ -53053,8 +53155,8 @@ msgstr "" msgid "Straight Line" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:951 -#: erpnext/public/js/templates/shop_floor_template.html:1001 +#: erpnext/public/js/templates/shop_floor_template.html:971 +#: erpnext/public/js/templates/shop_floor_template.html:1021 msgid "Sub" msgstr "" @@ -53121,7 +53223,7 @@ msgstr "" msgid "Sub Procedure" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.py:278 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:301 msgid "Sub assembly item references are missing. Please fetch the sub assemblies and raw materials again." msgstr "" @@ -53138,8 +53240,8 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom_dashboard.py:15 #: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:12 #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json -#: erpnext/public/js/templates/shop_floor_template.html:696 -#: erpnext/public/js/templates/shop_floor_template.html:734 +#: erpnext/public/js/templates/shop_floor_template.html:716 +#: erpnext/public/js/templates/shop_floor_template.html:754 msgid "Subcontract" msgstr "" @@ -53152,12 +53254,8 @@ msgstr "" #. Name of a report #. Label of a Link in the Manufacturing Workspace -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontract Order Summary" msgstr "" @@ -53175,16 +53273,14 @@ msgstr "" #. Label of a Link in the Buying Workspace #. Label of a Link in the Manufacturing Workspace #. Label of a Link in the Stock Workspace -#. Label of a Link in the Subcontracting Workspace #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.json #: erpnext/buying/workspace/buying/buying.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/workspace/stock/stock.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json msgid "Subcontracted Item To Be Received" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:224 +#: erpnext/stock/doctype/material_request/material_request.js:227 msgid "Subcontracted Purchase Order" msgstr "" @@ -53200,12 +53296,10 @@ msgstr "" #. Label of a Link in the Buying Workspace #. Label of a Link in the Manufacturing Workspace #. Label of a Link in the Stock Workspace -#. Label of a Link in the Subcontracting Workspace #: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.json #: erpnext/buying/workspace/buying/buying.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/workspace/stock/stock.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json msgid "Subcontracted Raw Materials To Be Transferred" msgstr "" @@ -53215,25 +53309,19 @@ msgstr "" #. 'Production Plan Sub Assembly Item' #. Label of a Card Break in the Manufacturing Workspace #. Option for the 'Purpose' (Select) field in DocType 'Material Request' -#. Name of a Workspace -#. Title of a Workspace Sidebar #: erpnext/desktop_icon/subcontracting.json #: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:10 #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting" msgstr "" #. Label of a Link in the Manufacturing Workspace #. Name of a DocType -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting BOM" msgstr "" @@ -53248,14 +53336,10 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/setup/setup_wizard/operations/install_fixtures.py:132 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:158 -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Delivery" msgstr "" @@ -53279,24 +53363,14 @@ msgstr "" #. Option for the 'From Voucher Type' (Select) field in DocType 'Stock #. Reservation Entry' #. Name of a DocType -#. Label of a Card Break in the Subcontracting Workspace -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/selling/doctype/sales_order/sales_order.js:1049 #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Inward Order" msgstr "" -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Inward Order Count" -msgstr "" - #. Label of the subcontracting_inward_order_item (Data) field in DocType 'Work #. Order' #. Name of a DocType @@ -53329,7 +53403,6 @@ msgstr "" #. Receipt Item' #. Label of the subcontracting_order (Link) field in DocType 'Subcontracting #. Receipt Supplied Item' -#. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 #: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -53339,7 +53412,6 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:141 #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Order" msgstr "" @@ -53373,18 +53445,6 @@ msgstr "" msgid "Subcontracting Order {0} created." msgstr "" -#. Label of a chart in the Subcontracting Workspace -#. Label of a Card Break in the Subcontracting Workspace -#. Label of a Link in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Outward Order" -msgstr "" - -#. Label of a number card in the Subcontracting Workspace -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -msgid "Subcontracting Outward Order Count" -msgstr "" - #. Label of the purchase_order (Link) field in DocType 'Subcontracting Order' #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json msgid "Subcontracting Purchase Order" @@ -53400,8 +53460,6 @@ msgstr "" #. Option for the 'Reference Type' (Select) field in DocType 'Quality #. Inspection' #. Name of a DocType -#. Label of a Link in the Subcontracting Workspace -#. Label of a Workspace Sidebar Item #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json #: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json @@ -53409,8 +53467,6 @@ msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:637 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json -#: erpnext/workspace_sidebar/subcontracting.json msgid "Subcontracting Receipt" msgstr "" @@ -53477,7 +53533,7 @@ msgstr "" msgid "Submit Generated Invoices" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:968 +#: erpnext/public/js/shop_floor/shop_floor.js:1004 msgid "Submit Inspection" msgstr "" @@ -53487,11 +53543,11 @@ msgstr "" msgid "Submit Journal entries" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1380 +#: erpnext/public/js/shop_floor/shop_floor.js:1415 msgid "Submit focused job card" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1062 +#: erpnext/public/js/shop_floor/shop_floor.js:1098 msgid "Submit job card {0}? This finalizes the job card." msgstr "" @@ -53507,8 +53563,8 @@ msgstr "" msgid "Submitted Job Card cannot be processed." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:855 -#: erpnext/public/js/shop_floor/shop_floor.js:1067 +#: erpnext/public/js/shop_floor/shop_floor.js:891 +#: erpnext/public/js/shop_floor/shop_floor.js:1103 msgid "Submitting job card..." msgstr "" @@ -53526,7 +53582,6 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace #. Label of a Desktop Icon -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/process_subscription/process_subscription.json @@ -53541,7 +53596,6 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation_dashboard.py:12 #: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:25 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:34 -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscription" msgstr "" @@ -53576,10 +53630,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/subscription_plan/subscription_plan.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscription Plan" msgstr "" @@ -53605,7 +53657,6 @@ msgstr "" #: erpnext/accounts/doctype/subscription_settings/subscription_settings.json #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/workspace_sidebar/erpnext_settings.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscription Settings" msgstr "" @@ -53618,11 +53669,7 @@ msgstr "" msgid "Subscription for Future dates cannot be processed." msgstr "" -#. Name of a Workspace -#. Title of a Workspace Sidebar -#: erpnext/accounts/workspace/subscriptions/subscriptions.json #: erpnext/selling/doctype/customer/customer_dashboard.py:28 -#: erpnext/workspace_sidebar/subscriptions.json msgid "Subscriptions" msgstr "" @@ -53653,7 +53700,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:611 msgid "Successfully Reconciled" msgstr "" @@ -53661,7 +53708,7 @@ msgstr "" msgid "Successfully Set Supplier" msgstr "" -#: erpnext/stock/doctype/item/item.py:409 +#: erpnext/stock/doctype/item/item.py:414 msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM." msgstr "" @@ -53681,11 +53728,11 @@ msgstr "" msgid "Successfully imported {0} records." msgstr "" -#: erpnext/buying/doctype/supplier/supplier.js:243 +#: erpnext/buying/doctype/supplier/supplier.js:252 msgid "Successfully linked to Customer" msgstr "" -#: erpnext/selling/doctype/customer/customer.js:275 +#: erpnext/selling/doctype/customer/customer.js:284 msgid "Successfully linked to Supplier" msgstr "" @@ -53841,14 +53888,14 @@ msgstr "" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:51 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:195 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/crm/doctype/contract/contract.json +#: erpnext/controllers/trends.py:478 erpnext/crm/doctype/contract/contract.json #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json #: erpnext/public/js/purchase_trends_filters.js:50 #: erpnext/public/js/purchase_trends_filters.js:63 #: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json #: erpnext/regional/report/irs_1099/irs_1099.py:76 -#: erpnext/selling/doctype/customer/customer.js:257 +#: erpnext/selling/doctype/customer/customer.js:266 #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:187 #: erpnext/selling/doctype/sales_order/sales_order.js:1741 @@ -53867,7 +53914,6 @@ msgstr "" #: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:524 #: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json #: erpnext/workspace_sidebar/invoicing.json -#: erpnext/workspace_sidebar/subscriptions.json msgid "Supplier" msgstr "" @@ -53957,7 +54003,7 @@ msgstr "" #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/report/accounts_payable/accounts_payable.js:119 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:102 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1258 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1260 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:200 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:178 #: erpnext/accounts/report/purchase_register/purchase_register.js:27 @@ -53968,6 +54014,7 @@ msgstr "" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:107 #: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/trends.py:486 erpnext/controllers/trends.py:507 #: erpnext/public/js/purchase_trends_filters.js:51 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/regional/report/irs_1099/irs_1099.js:26 @@ -54057,7 +54104,7 @@ msgstr "" #. Label of the supplier_name (Data) field in DocType 'Purchase Receipt' #. Label of the supplier_name (Data) field in DocType 'Stock Entry' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1173 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1175 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:196 #: erpnext/accounts/report/purchase_register/purchase_register.py:195 @@ -54069,6 +54116,7 @@ msgstr "" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:101 +#: erpnext/controllers/trends.py:484 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -54143,7 +54191,7 @@ msgstr "" #: erpnext/buying/workspace/buying/buying.json #: erpnext/crm/doctype/opportunity/opportunity.js:81 #: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/stock/doctype/material_request/material_request.js:208 +#: erpnext/stock/doctype/material_request/material_request.js:211 #: erpnext/workspace_sidebar/buying.json msgid "Supplier Quotation" msgstr "" @@ -54366,7 +54414,7 @@ msgstr "" msgid "Switch Between Payment Modes" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1371 +#: erpnext/public/js/shop_floor/shop_floor.js:1406 msgid "Switch Board / Operator view" msgstr "" @@ -54374,10 +54422,18 @@ msgstr "" msgid "Switch between light, dark, or system theme" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1372 +#: erpnext/public/js/shop_floor/shop_floor.js:1407 msgid "Switch board tab" msgstr "" +#: erpnext/public/js/shop_floor/shop_floor.js:139 +msgid "Switch to Dark Theme" +msgstr "" + +#: erpnext/public/js/shop_floor/shop_floor.js:139 +msgid "Switch to Light Theme" +msgstr "" + #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:23 msgid "Sync Now" msgstr "" @@ -54391,7 +54447,7 @@ msgstr "" msgid "Synchronize all accounts every hour" msgstr "" -#: erpnext/accounts/doctype/account/account.py:676 +#: erpnext/accounts/doctype/account/account.py:683 msgid "System In Use" msgstr "" @@ -54438,9 +54494,7 @@ msgid "TDS / withholding tax category applied when paying this supplier" msgstr "" #. Name of a report -#. Label of a Workspace Sidebar Item #: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.json -#: erpnext/workspace_sidebar/taxes.json msgid "TDS Computation Summary" msgstr "" @@ -54595,7 +54649,7 @@ msgstr "" #: erpnext/stock/dashboard/item_dashboard.js:234 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/doctype/stock_entry/stock_entry.js:826 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:825 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Target Warehouse" msgstr "" @@ -54619,7 +54673,7 @@ msgstr "" msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "Cílový sklad pro hotový výrobek musí být stejný jako sklad hotového výrobku {0} ve výrobním příkazu {1} propojeném s příchozí subdodavatelskou objednávkou." -#: erpnext/manufacturing/doctype/work_order/work_order.py:604 +#: erpnext/manufacturing/doctype/work_order/work_order.py:610 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54632,7 +54686,7 @@ msgstr "" msgid "Target Warehouse is set for some items but the customer is not an internal customer." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:384 +#: erpnext/manufacturing/doctype/work_order/work_order.py:390 msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item." msgstr "" @@ -54715,7 +54769,7 @@ msgstr "" #. Label of the amount (Currency) field in DocType 'Item Wise Tax Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:244 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:91 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:101 msgid "Tax Amount" msgstr "" @@ -54795,7 +54849,6 @@ msgstr "" #. Label of the tax_category (Link) field in DocType 'Delivery Note' #. Label of the tax_category (Link) field in DocType 'Item Tax' #. Label of the tax_category (Link) field in DocType 'Purchase Receipt' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json @@ -54815,7 +54868,6 @@ msgstr "" #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/item_tax/item_tax.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Category" msgstr "" @@ -54854,7 +54906,7 @@ msgstr "" #: erpnext/accounts/report/sales_register/sales_register.py:229 #: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:67 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:205 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:57 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:67 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "Tax Id" @@ -54894,7 +54946,7 @@ msgid "Tax Rate" msgstr "" #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:237 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:84 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:94 msgid "Tax Rate %" msgstr "" @@ -54914,10 +54966,8 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Invoicing Workspace -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/tax_rule/tax_rule.json #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Rule" msgstr "" @@ -54976,7 +55026,6 @@ msgstr "" #. Label of the tax_withholding_category (Link) field in DocType 'Lower #. Deduction Certificate' #. Label of the tax_withholding_category (Link) field in DocType 'Customer' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json @@ -54984,19 +55033,16 @@ msgstr "" #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json #: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:199 -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:72 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:82 #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json #: erpnext/selling/doctype/customer/customer.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Withholding Category" msgstr "" #. Name of a report -#. Label of a Workspace Sidebar Item #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Withholding Details" msgstr "" @@ -55041,7 +55087,6 @@ msgstr "" #. Rate' #. Label of the tax_withholding_group (Link) field in DocType 'Supplier' #. Label of the tax_withholding_group (Link) field in DocType 'Customer' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json @@ -55051,7 +55096,6 @@ msgstr "" #: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/selling/doctype/customer/customer.json -#: erpnext/workspace_sidebar/taxes.json msgid "Tax Withholding Group" msgstr "" @@ -55117,12 +55161,10 @@ msgstr "" #. Label of the taxes (Table) field in DocType 'POS Closing Entry' #. Label of the taxes_section (Section Break) field in DocType 'POS Profile' #. Label of the sb_1 (Section Break) field in DocType 'Subscription' -#. Name of a Workspace #. Label of a Desktop Icon #. Label of the taxes_section (Section Break) field in DocType 'Sales Order' #. Label of the taxes (Table) field in DocType 'Item Group' #. Label of the taxes (Table) field in DocType 'Item' -#. Title of a Workspace Sidebar #: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:60 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json @@ -55130,10 +55172,10 @@ msgstr "" #: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:12 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:27 #: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:43 -#: erpnext/accounts/workspace/taxes/taxes.json erpnext/desktop_icon/taxes.json +#: erpnext/desktop_icon/taxes.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/setup/doctype/item_group/item_group.json -#: erpnext/stock/doctype/item/item.json erpnext/workspace_sidebar/taxes.json +#: erpnext/stock/doctype/item/item.json msgid "Taxes" msgstr "" @@ -55256,7 +55298,7 @@ msgstr "" msgid "Taxes and Charges Deducted (Company Currency)" msgstr "" -#: erpnext/stock/doctype/item/item.py:422 +#: erpnext/stock/doctype/item/item.py:427 msgid "Taxes row #{0}: {1} cannot be smaller than {2}" msgstr "" @@ -55307,7 +55349,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:358 +#: erpnext/stock/get_item_details.py:357 msgid "Template Item Selected" msgstr "" @@ -55430,7 +55472,6 @@ msgstr "" #. Name of a DocType #. Label of the terms (Text Editor) field in DocType 'Terms and Conditions' #. Label of the terms (Text Editor) field in DocType 'Purchase Receipt' -#. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json @@ -55445,7 +55486,6 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/workspace_sidebar/accounts_setup.json msgid "Terms and Conditions" msgstr "" @@ -55519,17 +55559,18 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/accounts/doctype/territory_item/territory_item.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:142 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:108 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:184 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:68 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:169 -#: erpnext/accounts/report/gross_profit/gross_profit.py:436 +#: erpnext/accounts/report/gross_profit/gross_profit.py:438 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:8 #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:22 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:259 #: erpnext/accounts/report/sales_register/sales_register.py:223 -#: erpnext/crm/doctype/lead/lead.json +#: erpnext/controllers/trends.py:421 erpnext/controllers/trends.py:447 +#: erpnext/controllers/trends.py:522 erpnext/crm/doctype/lead/lead.json #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/doctype/prospect/prospect.json #: erpnext/crm/report/lead_details/lead_details.js:46 @@ -55632,11 +55673,11 @@ msgstr "" msgid "The Batch No {0} has not been supplied against the {1} {2}" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1585 +#: erpnext/stock/serial_batch_bundle.py:1591 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1640 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1641 msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." msgstr "" @@ -55664,7 +55705,7 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1206 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1207 msgid "The Item {0} does not have Serial No or Batch No" msgstr "" @@ -55672,7 +55713,7 @@ msgstr "" msgid "The Loyalty Program isn't valid for the selected company" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1269 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1270 msgid "The Payment Request {0} is already paid, cannot process payment twice" msgstr "" @@ -55688,7 +55729,7 @@ msgstr "" msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1384 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1397 msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" @@ -55700,7 +55741,7 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2759 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2765 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" @@ -55708,7 +55749,7 @@ msgstr "" msgid "The Serial Nos {0} have not been supplied against the {1} {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:959 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:972 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55722,7 +55763,7 @@ msgstr "" msgid "The account head under Liability or Equity, in which Profit/Loss will be booked" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:1163 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1164 msgid "The allocated amount is greater than the outstanding amount of Payment Request {0}" msgstr "" @@ -55744,8 +55785,8 @@ msgstr "" msgid "The bank account is not a company account. Please select a company account" msgstr "" -#: erpnext/stock/services/serial_batch_bundle_service.py:654 -msgid "The batch {0} is already reserved in {1} {2}. So, cannot proceed with the {3} {4}, which is created against the {5} {6}." +#: erpnext/stock/services/serial_batch_bundle_service.py:655 +msgid "The batch {0} is reserved for {1} in the warehouse {2} and the remaining quantity is not enough to cover the reservations. So, cannot proceed with the {3} {4}." msgstr "" #: erpnext/regional/report/vat_audit_report/vat_audit_report.py:41 @@ -55776,7 +55817,7 @@ msgstr "" msgid "The date of the transaction" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1236 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1247 msgid "The default BOM for that item will be fetched by the system. You can also change the BOM." msgstr "" @@ -55813,7 +55854,7 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" -#: erpnext/stock/stock_ledger.py:445 +#: erpnext/stock/stock_ledger.py:475 msgid "The field {0} is required for reposting" msgstr "" @@ -55842,7 +55883,7 @@ msgstr "" msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:137 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:140 msgid "The following Purchase Invoices are not submitted:" msgstr "" @@ -55854,11 +55895,11 @@ msgstr "" msgid "The following batches are expired, please restock them:
{0}" msgstr "" -#: erpnext/controllers/accounts_controller.py:371 +#: erpnext/controllers/accounts_controller.py:377 msgid "The following cancelled repost entries exist for {0}:
{1}
Kindly delete these entries before continuing." msgstr "" -#: erpnext/stock/doctype/item/item.py:953 +#: erpnext/stock/doctype/item/item.py:958 msgid "The following deleted attributes exist in Variants but not in the Template. You can either delete the Variants or keep the attribute(s) in template." msgstr "" @@ -55870,16 +55911,16 @@ msgstr "" msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" -#: erpnext/accounts/doctype/payment_request/payment_request.py:782 +#: erpnext/accounts/doctype/payment_request/payment_request.py:783 msgid "The following payment schedule(s) already exist:\n" "{0}" msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:111 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:114 msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:566 +#: erpnext/stock/doctype/material_request/material_request.py:605 msgid "The following {0} were created: {1}" msgstr "" @@ -55902,15 +55943,15 @@ msgstr "Svátek dne {0} není mezi datem od a datem do" msgid "The invoice is not fully allocated as there is a difference of {0}." msgstr "" -#: erpnext/controllers/buying_controller.py:1244 +#: erpnext/controllers/buying_controller.py:1252 msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master." msgstr "" -#: erpnext/stock/doctype/item/item.py:679 +#: erpnext/stock/doctype/item/item.py:684 msgid "The items {0} and {1} are present in the following {2} :" msgstr "" -#: erpnext/controllers/buying_controller.py:1237 +#: erpnext/controllers/buying_controller.py:1245 msgid "The items {items} are not marked as {type_of} item. You can enable them as {type_of} item from their Item masters." msgstr "" @@ -55926,7 +55967,7 @@ msgstr "" msgid "The last account row must not have any debit or credit amounts set." msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:533 +#: erpnext/public/js/utils/barcode_scanner.js:542 msgid "The last scanned warehouse has been cleared and won't be set in the subsequently scanned items" msgstr "" @@ -55968,7 +56009,7 @@ msgstr "" msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice." msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:234 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:235 msgid "The parent account {0} does not exists in the uploaded template" msgstr "" @@ -56019,7 +56060,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:976 +#: erpnext/public/js/utils.js:988 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -56031,7 +56072,7 @@ msgstr "" msgid "The root account {0} must be a group" msgstr "" -#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:87 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:88 msgid "The selected BOMs are not for the same item" msgstr "" @@ -56043,7 +56084,7 @@ msgstr "" msgid "The selected item cannot have Batch" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:662 +#: erpnext/assets/doctype/asset/asset.js:670 msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone.
Do you want to continue?" msgstr "" @@ -56051,8 +56092,8 @@ msgstr "" msgid "The seller and the buyer cannot be the same" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:199 msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" @@ -56072,7 +56113,7 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:908 +#: erpnext/stock/stock_ledger.py:956 msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "Zásoba položky {0} ve skladu {1} byla dne {2} záporná. Pro zaúčtování správné oceňovací sazby byste měli před datem {4} a časem {5} vytvořit kladnou položku {3}. Další podrobnosti najdete v dokumentaci." @@ -56106,11 +56147,11 @@ msgstr "" msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:352 +#: erpnext/stock/doctype/material_request/material_request.py:391 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:359 +#: erpnext/stock/doctype/material_request/material_request.py:398 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" msgstr "" @@ -56146,7 +56187,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:205 +#: erpnext/controllers/item_variant.py:267 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -56154,15 +56195,15 @@ msgstr "" msgid "The warehouse account(s) below are not of type 'Stock'. Please set a correct Stock asset account on the warehouse (Account Type must be 'Stock'):" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1264 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1275 msgid "The warehouse where you store finished Items before they are shipped." msgstr "Sklad, kde uchováváte hotové položky před jejich expedicí." -#: erpnext/manufacturing/doctype/work_order/work_order.js:1257 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1268 msgid "The warehouse where you store your raw materials. Each required item can have a separate source warehouse. Group warehouse also can be selected as source warehouse. On submission of the Work Order, the raw materials will be reserved in these warehouses for production usage." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1269 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1280 msgid "The warehouse where your Items will be transferred when you begin production. Group Warehouse can also be selected as a Work in Progress warehouse." msgstr "" @@ -56178,11 +56219,11 @@ msgstr "" msgid "The {0} contains Unit Price Items." msgstr "" -#: erpnext/stock/doctype/item/item.py:493 +#: erpnext/stock/doctype/item/item.py:498 msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:572 +#: erpnext/stock/doctype/material_request/material_request.py:611 msgid "The {0} {1} created successfully" msgstr "" @@ -56190,7 +56231,7 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1780 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1781 msgid "The {0} {1} is in submitted state, please cancel it first" msgstr "" @@ -56243,7 +56284,7 @@ msgstr "" msgid "There are no transactions in the system for the selected bank account and dates that match the filters." msgstr "" -#: erpnext/stock/doctype/item/item.js:1587 +#: erpnext/stock/doctype/item/item.js:1608 msgid "There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit Item Valuation, FIFO and Moving Average." msgstr "" @@ -56255,7 +56296,7 @@ msgstr "" msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" -#: erpnext/accounts/party.py:597 +#: erpnext/accounts/party.py:613 msgid "There can only be 1 Account per Company in {0} {1}" msgstr "" @@ -56279,7 +56320,7 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:909 msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" @@ -56313,7 +56354,7 @@ msgstr "" msgid "There was an issue connecting to Plaid's authentication server. Check browser console for more information" msgstr "" -#: erpnext/accounts/utils.py:1145 +#: erpnext/accounts/utils.py:1146 msgid "There were issues unlinking payment entry {0}." msgstr "" @@ -56327,11 +56368,11 @@ msgstr "" msgid "This Fiscal Year" msgstr "" -#: erpnext/stock/doctype/item/item.js:220 +#: erpnext/stock/doctype/item/item.js:235 msgid "This Item is a Template and cannot be used in transactions.
All fields present in the 'Copy Fields to Variant' table in Item Variant Settings will be copied to its variant items." msgstr "" -#: erpnext/stock/doctype/item/item.js:277 +#: erpnext/stock/doctype/item/item.js:292 msgid "This Item is a Variant of {0} (Template)." msgstr "" @@ -56458,7 +56499,7 @@ msgstr "" msgid "This is a root department and cannot be edited." msgstr "" -#: erpnext/setup/doctype/item_group/item_group.js:98 +#: erpnext/setup/doctype/item_group/item_group.js:115 msgid "This is a root item group and cannot be edited." msgstr "" @@ -56490,19 +56531,15 @@ msgstr "" msgid "This is based on transactions against this Sales Person. See timeline below for details" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:107 -msgid "This is considered dangerous from accounting point of view." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:97 msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1250 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1261 msgid "This is enabled by default. If you want to plan materials for sub-assemblies of the Item you're manufacturing leave this enabled. If you plan and manufacture the sub-assemblies separately, you can disable this checkbox." msgstr "" -#: erpnext/stock/doctype/item/item.js:1575 +#: erpnext/stock/doctype/item/item.js:1596 msgid "This is for raw material Items that'll be used to create finished goods. If the Item is an additional service like 'washing' that'll be used in the BOM, keep this unchecked." msgstr "" @@ -56541,7 +56578,7 @@ msgstr "" msgid "This item filter has already been applied for the {0}" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:663 +#: erpnext/public/js/shop_floor/shop_floor.js:699 msgid "This machine can run at most {0} job(s) in parallel. Pause or complete a running job before starting another." msgstr "" @@ -56559,7 +56596,7 @@ msgstr "Tento modul je plánován k ukončení podpory a ve verzi 17 bude zcela msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe Helpdesk instead." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:909 +#: erpnext/public/js/shop_floor/shop_floor.js:945 msgid "This operation requires a Quality Inspection but no template with parameters is configured. Set a Quality Inspection Template on Operation {0} to inspect from the Shop Floor." msgstr "" @@ -56585,7 +56622,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was consumed through Asset Capitalization {1}." msgstr "" -#: erpnext/assets/doctype/asset_repair/asset_repair.py:328 +#: erpnext/assets/doctype/asset_repair/asset_repair.py:331 msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}." msgstr "" @@ -56922,7 +56959,7 @@ msgstr "" msgid "To Currency" msgstr "" -#: erpnext/controllers/accounts_controller.py:530 +#: erpnext/controllers/accounts_controller.py:515 #: erpnext/setup/doctype/holiday_list/holiday_list.py:121 msgid "To Date cannot be before From Date" msgstr "Datum do nemůže být před datem od" @@ -56933,7 +56970,7 @@ msgstr "Datum do nemůže být před datem od" msgid "To Date cannot be before From Date." msgstr "" -#: erpnext/accounts/report/financial_statements.py:141 +#: erpnext/accounts/report/financial_statements.py:318 msgid "To Date cannot be less than From Date" msgstr "" @@ -57020,8 +57057,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json -#: erpnext/public/js/templates/shop_floor_template.html:899 -#: erpnext/public/js/templates/shop_floor_template.html:909 +#: erpnext/public/js/templates/shop_floor_template.html:919 +#: erpnext/public/js/templates/shop_floor_template.html:929 msgid "To Manufacture" msgstr "" @@ -57148,11 +57185,11 @@ msgstr "" msgid "To Warehouse (Optional)" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:1002 +#: erpnext/manufacturing/doctype/bom/bom.js:1006 msgid "To add Operations tick the 'With Operations' checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:741 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:768 msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" @@ -57196,7 +57233,7 @@ msgstr "" msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:761 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." msgstr "" @@ -57211,7 +57248,7 @@ msgstr "" msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" -#: erpnext/stock/doctype/item/item.py:701 +#: erpnext/stock/doctype/item/item.py:706 msgid "To merge, following properties must be same for both items" msgstr "" @@ -57227,7 +57264,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:208 +#: erpnext/controllers/item_variant.py:270 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -57244,8 +57281,8 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 -#: erpnext/accounts/report/financial_statements.py:648 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:761 +#: erpnext/accounts/report/financial_statements.py:826 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 #: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 @@ -57253,7 +57290,7 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:1028 +#: erpnext/public/js/templates/shop_floor_template.html:1048 msgid "Today's Sessions" msgstr "" @@ -57295,6 +57332,26 @@ msgstr "" msgid "Too many columns. Export the report and print it using a spreadsheet application." msgstr "" +#. Label of a Card Break in the Manufacturing Workspace +#. Label of the tools (Column Break) field in DocType 'Email Digest' +#. Label of a Card Break in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order/purchase_order.js:552 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:626 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:61 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:149 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:456 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:465 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:84 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:123 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/manufacturing.json +#: erpnext/workspace_sidebar/stock.json +msgid "Tools" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Torr" @@ -57332,8 +57389,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:148 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:149 msgid "Total (Credit)" msgstr "" @@ -57442,7 +57499,7 @@ msgstr "" msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:237 msgid "Total Asset" msgstr "" @@ -57451,10 +57508,6 @@ msgstr "" msgid "Total Asset Cost" msgstr "" -#: erpnext/assets/dashboard_fixtures.py:158 -msgid "Total Assets" -msgstr "" - #. Label of the total_billable_amount (Currency) field in DocType 'Timesheet' #: erpnext/projects/doctype/timesheet/timesheet.json msgid "Total Billable Amount" @@ -57624,7 +57677,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:244 msgid "Total Equity" msgstr "" @@ -57633,11 +57686,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:137 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:133 msgid "Total Expense This Year" msgstr "Celkové náklady v tomto roce" @@ -57675,11 +57728,11 @@ msgstr "Celková doba podržení" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:136 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:132 msgid "Total Income This Year" msgstr "Celkové příjmy v tomto roce" @@ -57707,7 +57760,7 @@ msgstr "" msgid "Total Items" msgstr "" -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:24 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:26 msgid "Total Landed Cost" msgstr "" @@ -57722,7 +57775,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:240 msgid "Total Liability" msgstr "" @@ -57966,7 +58019,7 @@ msgstr "" msgid "Total Tax" msgstr "" -#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:86 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:96 msgid "Total Taxable Amount" msgstr "" @@ -58130,7 +58183,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:197 +#: erpnext/selling/doctype/customer/customer.py:205 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -58159,10 +58212,10 @@ msgstr "" msgid "Total quantity in delivery schedule cannot be greater than the item quantity" msgstr "" -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:762 -#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:763 -#: erpnext/accounts/report/financial_statements.py:351 -#: erpnext/accounts/report/financial_statements.py:352 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:770 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:771 +#: erpnext/accounts/report/financial_statements.py:525 +#: erpnext/accounts/report/financial_statements.py:526 msgid "Total {0} ({1})" msgstr "" @@ -58170,11 +58223,11 @@ msgstr "" msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" -#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +#: erpnext/controllers/trends.py:26 erpnext/controllers/trends.py:33 msgid "Total(Amt)" msgstr "" -#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +#: erpnext/controllers/trends.py:26 erpnext/controllers/trends.py:33 msgid "Total(Qty)" msgstr "" @@ -58289,7 +58342,7 @@ msgstr "" msgid "Transaction Dates" msgstr "" -#: erpnext/setup/doctype/company/company.py:1140 +#: erpnext/setup/doctype/company/company.py:1142 msgid "Transaction Deletion Document {0} has been triggered for company {1}" msgstr "" @@ -58470,9 +58523,10 @@ msgstr "" msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions." msgstr "" -#. Description of the 'Credit Limit' (Table) field in DocType 'Customer' +#. Description of the 'Credit & Overdue Limits' (Table) field in DocType +#. 'Customer' #: erpnext/selling/doctype/customer/customer.json -msgid "Transactions are blocked or warned when outstanding balance exceeds this amount." +msgid "Transactions are blocked when the outstanding balance exceeds the credit limit. When the overdue billing setting is enabled, new invoices are also blocked when the customer's overdue amount exceeds the overdue billing threshold." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:239 @@ -58502,7 +58556,7 @@ msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json #: erpnext/accounts/doctype/share_transfer/share_transfer.json #: erpnext/assets/doctype/asset_movement/asset_movement.json -#: erpnext/public/js/templates/shop_floor_template.html:975 +#: erpnext/public/js/templates/shop_floor_template.html:995 #: erpnext/stock/doctype/item_reorder/item_reorder.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:645 @@ -58514,7 +58568,7 @@ msgstr "" msgid "Transfer Account" msgstr "" -#: erpnext/assets/doctype/asset/asset.js:160 +#: erpnext/assets/doctype/asset/asset.js:168 msgid "Transfer Asset" msgstr "" @@ -58524,7 +58578,7 @@ msgstr "" msgid "Transfer Extra Raw Materials to WIP (%)" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:483 msgid "Transfer From Warehouses" msgstr "" @@ -58537,12 +58591,12 @@ msgid "Transfer Material Against" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:92 -#: erpnext/public/js/templates/shop_floor_template.html:712 -#: erpnext/public/js/templates/shop_floor_template.html:798 +#: erpnext/public/js/templates/shop_floor_template.html:732 +#: erpnext/public/js/templates/shop_floor_template.html:818 msgid "Transfer Materials" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:453 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:477 msgid "Transfer Materials For Warehouse {0}" msgstr "" @@ -58567,7 +58621,7 @@ msgstr "" msgid "Transfer and Issue" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1379 +#: erpnext/public/js/shop_floor/shop_floor.js:1414 msgid "Transfer materials" msgstr "" @@ -58621,7 +58675,7 @@ msgstr "" msgid "Transit" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.js:611 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:610 msgid "Transit Entry" msgstr "" @@ -58927,7 +58981,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:90 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:865 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58955,7 +59009,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:92 #: erpnext/stock/report/item_prices/item_prices.py:55 #: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 @@ -59021,7 +59075,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:526 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -59040,7 +59094,7 @@ msgstr "" msgid "UOM Name" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1686 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1728 msgid "UOM conversion factor required for UOM: {0} in Item: {1}" msgstr "" @@ -59144,10 +59198,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:95 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:96 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:319 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:320 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -59233,7 +59287,7 @@ msgstr "" msgid "Unit of Measure (UOM)" msgstr "" -#: erpnext/stock/doctype/item/item.py:454 +#: erpnext/stock/doctype/item/item.py:459 msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table" msgstr "" @@ -59337,7 +59391,6 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json -#: erpnext/workspace_sidebar/banking.json #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Unreconcile Payment" @@ -59378,7 +59431,7 @@ msgstr "" msgid "Unreconciled Transactions" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:955 +#: erpnext/manufacturing/doctype/work_order/work_order.js:959 #: erpnext/selling/doctype/sales_order/sales_order.js:122 #: erpnext/stock/doctype/pick_list/pick_list.js:166 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192 @@ -59391,17 +59444,17 @@ msgstr "" msgid "Unreserve Stock" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:321 msgid "Unreserve for Raw Materials" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:269 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295 msgid "Unreserve for Sub-assembly" msgstr "" #: erpnext/public/js/stock_reservation.js:281 #: erpnext/selling/doctype/sales_order/sales_order.js:552 -#: erpnext/stock/doctype/pick_list/pick_list.js:321 +#: erpnext/stock/doctype/pick_list/pick_list.js:322 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:389 msgid "Unreserving Stock..." msgstr "" @@ -59436,10 +59489,6 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 -msgid "Unsupported Feature" -msgstr "" - #. Option for the 'Status' (Select) field in DocType 'Appointment' #: erpnext/crm/doctype/appointment/appointment.json msgid "Unverified" @@ -59453,7 +59502,7 @@ msgstr "" msgid "Up" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:940 +#: erpnext/public/js/templates/shop_floor_template.html:960 msgid "Up Next" msgstr "" @@ -59584,7 +59633,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:955 +#: erpnext/public/js/utils.js:967 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59682,11 +59731,11 @@ msgstr "" msgid "Updating Costing and Billing fields against this Project..." msgstr "" -#: erpnext/stock/doctype/item/item.py:1541 +#: erpnext/stock/doctype/item/item.py:1546 msgid "Updating Variants..." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.js:1212 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1223 msgid "Updating Work Order status" msgstr "" @@ -59694,7 +59743,7 @@ msgstr "" msgid "Updating details." msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1116 +#: erpnext/public/js/shop_floor/shop_floor.js:1152 msgid "Updating job card..." msgstr "" @@ -59880,7 +59929,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:639 +#: erpnext/projects/doctype/project/project.py:669 msgid "Use a name that is different from previous project name" msgstr "" @@ -59925,6 +59974,12 @@ msgstr "" msgid "Used for items valued at Standard Cost: the difference between the purchase price and the standard rate is booked here." msgstr "" +#. Description of the 'Expenses Added To Stock Contra Account' (Link) field in +#. DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Used to balance the books when recording expenses added to stock" +msgstr "" + #. Description of the 'Purchase Expense Contra Account' (Link) field in DocType #. 'Item Default' #: erpnext/stock/doctype/item_default/item_default.json @@ -59966,11 +60021,15 @@ msgstr "" msgid "User Resolution Time" msgstr "Doba vyřešení uživatelem" +#: erpnext/accounts/party.py:441 +msgid "User don't have permissions to select/read this account." +msgstr "" + #: erpnext/accounts/doctype/pricing_rule/utils.py:593 msgid "User has not applied rule on the invoice {0}" msgstr "" -#: erpnext/crm/frappe_crm_api.py:190 +#: erpnext/crm/frappe_crm_api.py:197 msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." msgstr "" @@ -60027,14 +60086,20 @@ msgstr "" msgid "Users with this role are allowed to over deliver/receive against orders above the allowance percentage" msgstr "" +#. Description of the 'Role allowed to bypass overdue billing limit' (Link) +#. field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Users with this role can still submit invoices for customers over their overdue billing threshold." +msgstr "" + #. Description of the 'Role to Notify on Depreciation Failure' (Link) field in #. DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Users with this role will be notified if the asset depreciation gets failed" msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.js:103 -msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative." +#: erpnext/public/js/utils.js:569 +msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative. This is considered dangerous from accounting point of view.
Do you still want to enable negative inventory?" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133 @@ -60139,7 +60204,7 @@ msgstr "" msgid "Valid for Countries" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:302 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:320 msgid "Valid from and valid upto fields are mandatory for the cumulative" msgstr "" @@ -60242,7 +60307,7 @@ msgstr "" msgid "Valuation Method" msgstr "" -#: erpnext/stock/doctype/item/item.py:1074 +#: erpnext/stock/doctype/item/item.py:1079 msgid "Valuation Method cannot be changed to or from 'Standard Cost' for {0} because stock transactions already exist for it." msgstr "" @@ -60272,14 +60337,14 @@ msgstr "" #. Label of the valuation_rate (Currency) field in DocType 'Stock #. Reconciliation Item' #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json -#: erpnext/accounts/report/gross_profit/gross_profit.py:354 +#: erpnext/accounts/report/gross_profit/gross_profit.py:356 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_creator/bom_creator.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json -#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.js:972 +#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.js:993 #: erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -60287,7 +60352,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/report/available_serial_no/available_serial_no.py:164 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:90 #: erpnext/stock/report/item_prices/item_prices.py:57 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68 #: erpnext/stock/report/stock_balance/stock_balance.py:563 @@ -60298,19 +60363,19 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2161 +#: erpnext/stock/stock_ledger.py:2209 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1652 +#: erpnext/stock/doctype/item/item.py:1657 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2139 +#: erpnext/stock/stock_ledger.py:2187 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" -#: erpnext/stock/doctype/item/item.py:316 +#: erpnext/stock/doctype/item/item.py:321 msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" @@ -60468,13 +60533,13 @@ msgstr "" msgid "Variance ({})" msgstr "" -#: erpnext/stock/doctype/item/item.js:267 +#: erpnext/stock/doctype/item/item.js:282 #: erpnext/stock/doctype/item/item_list.js:61 #: erpnext/stock/report/item_variant_details/item_variant_details.py:74 msgid "Variant" msgstr "" -#: erpnext/stock/doctype/item/item.py:968 +#: erpnext/stock/doctype/item/item.py:973 msgid "Variant Attribute Error" msgstr "" @@ -60493,11 +60558,11 @@ msgstr "" msgid "Variant Based On" msgstr "" -#: erpnext/stock/doctype/item/item.py:996 +#: erpnext/stock/doctype/item/item.py:1001 msgid "Variant Based On cannot be changed" msgstr "" -#: erpnext/stock/doctype/item/item.js:243 +#: erpnext/stock/doctype/item/item.js:258 msgid "Variant Details Report" msgstr "" @@ -60511,7 +60576,7 @@ msgstr "" msgid "Variant Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:966 +#: erpnext/stock/doctype/item/item.py:971 msgid "Variant Items" msgstr "" @@ -60522,10 +60587,14 @@ msgstr "" msgid "Variant Of" msgstr "" -#: erpnext/stock/doctype/item/item.js:1260 +#: erpnext/stock/doctype/item/item.js:1281 msgid "Variant creation has been queued." msgstr "" +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:172 +msgid "Variant {0} and its template {1} cannot both be added to the same Pricing Rule" +msgstr "" + #. Label of the variants_section (Tab Break) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Variants" @@ -60565,7 +60634,7 @@ msgstr "" #. Label of the vendor_invoice (Link) field in DocType 'Landed Cost Vendor #. Invoice' #: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json -#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:42 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:52 msgid "Vendor Invoice" msgstr "" @@ -60892,7 +60961,7 @@ msgstr "" #: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json #: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1197 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 @@ -60924,7 +60993,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1468 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1469 msgid "Voucher No is mandatory" msgstr "" @@ -60966,7 +61035,7 @@ msgstr "" #: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json #: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1197 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 #: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 @@ -61179,7 +61248,7 @@ msgstr "" msgid "Warehouse not found against the account {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:896 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:902 #: erpnext/stock/doctype/delivery_note/delivery_note.py:401 msgid "Warehouse required for stock Item {0}" msgstr "" @@ -61193,7 +61262,7 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1657 +#: erpnext/stock/doctype/item/item.py:1662 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" @@ -61210,7 +61279,7 @@ msgstr "" msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:147 +#: erpnext/stock/services/base_stock_gl_composer.py:154 msgid "Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}." msgstr "" @@ -61220,7 +61289,7 @@ msgstr "" #. Label of the warehouses (Table MultiSelect) field in DocType 'Production #. Plan' -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:526 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:553 #: erpnext/manufacturing/doctype/production_plan/production_plan.json #: erpnext/stock/report/stock_balance/stock_balance.js:76 #: erpnext/stock/report/stock_ledger/stock_ledger.js:30 @@ -61323,7 +61392,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:918 +#: erpnext/stock/stock_ledger.py:966 msgid "Warning on Negative Stock" msgstr "" @@ -61339,11 +61408,11 @@ msgstr "" msgid "Warning: Another {0} # {1} exists against stock entry {2}" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.js:534 +#: erpnext/stock/doctype/material_request/material_request.js:535 msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:914 +#: erpnext/manufacturing/doctype/work_order/work_order.py:920 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -61635,7 +61704,7 @@ msgstr "" msgid "When checked, the system will use the posting datetime of the document for naming the document instead of the creation datetime of the document." msgstr "" -#: erpnext/stock/doctype/item/item.js:1594 +#: erpnext/stock/doctype/item/item.js:1615 msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend." msgstr "" @@ -61668,6 +61737,10 @@ msgstr "" msgid "While making Purchase Invoice from Purchase Order, use Exchange Rate on Invoice's transaction date rather than inheriting it from Purchase Order. Only applies for Purchase Invoice." msgstr "" +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:286 +msgid "White" +msgstr "Bílá" + #: erpnext/public/js/setup_wizard.js:31 msgid "Who are you setting this up for?" msgstr "" @@ -61720,7 +61793,7 @@ msgstr "" msgid "With Period Closing Entry For Opening Balances" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:154 +#: erpnext/public/js/shop_floor/shop_floor.js:180 msgid "With job cards only" msgstr "" @@ -61797,14 +61870,14 @@ msgstr "" #: erpnext/assets/doctype/asset/asset_list.js:12 #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json -#: erpnext/setup/doctype/company/company.py:453 +#: erpnext/setup/doctype/company/company.py:455 #: erpnext/support/doctype/warranty_claim/warranty_claim.json msgid "Work In Progress" msgstr "" #. Label of the work_instruction (Text Editor) field in DocType 'Operation' #: erpnext/manufacturing/doctype/operation/operation.json -#: erpnext/public/js/templates/shop_floor_template.html:829 +#: erpnext/public/js/templates/shop_floor_template.html:849 msgid "Work Instructions" msgstr "" @@ -61837,11 +61910,11 @@ msgstr "" #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 #: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json -#: erpnext/public/js/shop_floor/shop_floor.js:202 +#: erpnext/public/js/shop_floor/shop_floor.js:230 #: erpnext/selling/doctype/sales_order/sales_order.js:1094 -#: erpnext/stock/doctype/material_request/material_request.js:216 +#: erpnext/stock/doctype/material_request/material_request.js:219 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:612 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61853,7 +61926,7 @@ msgstr "" msgid "Work Order" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/production_plan.js:144 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:170 msgid "Work Order / Subcontract PO" msgstr "" @@ -61921,16 +61994,16 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:579 +#: erpnext/stock/doctype/material_request/material_request.py:618 msgid "Work Order cannot be created for the following reason:
{0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:858 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1130 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1177 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1136 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1183 msgid "Work Order has been {0}" msgstr "" @@ -61955,7 +62028,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:606 msgid "Work Orders" msgstr "" @@ -61980,7 +62053,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:602 +#: erpnext/manufacturing/doctype/work_order/work_order.py:608 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -62120,7 +62193,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_profile/pos_profile.json #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/setup/doctype/company/company.py:736 +#: erpnext/setup/doctype/company/company.py:738 msgid "Write Off" msgstr "" @@ -62289,6 +62362,10 @@ msgstr "" msgid "You are not authorized to set Frozen value" msgstr "" +#: erpnext/stock/doctype/company_restriction/company_restriction.py:93 +msgid "You are not permitted to add or remove Company {0} in Allowed Companies" +msgstr "" + #: erpnext/stock/doctype/pick_list/pick_list.py:544 msgid "You are picking more than required quantity for the item {0}. Check if there is any other pick list created for the sales order {1}." msgstr "" @@ -62309,7 +62386,7 @@ msgstr "" msgid "You can also set default CWIP account in Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:767 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" @@ -62358,7 +62435,7 @@ msgstr "" msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:776 +#: erpnext/manufacturing/doctype/bom/bom.js:780 msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" @@ -62386,7 +62463,7 @@ msgstr "" msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:205 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" @@ -62394,11 +62471,11 @@ msgstr "" msgid "You cannot make any changes to Job Card since Work Order is closed." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:168 msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:230 msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" @@ -62406,7 +62483,7 @@ msgstr "" msgid "You cannot redeem more than {0}." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:220 msgid "You cannot repost item valuation before {0}" msgstr "" @@ -62422,7 +62499,7 @@ msgstr "" msgid "You cannot submit the order without payment." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:968 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:974 msgid "You cannot update stock for a Debit Note. A Debit Note is a financial document that should not affect inventory. Please disable 'Update Stock'." msgstr "" @@ -62430,7 +62507,7 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:168 msgid "You do not have enough permission to access {0}: {1}" msgstr "" @@ -62455,11 +62532,11 @@ msgstr "" msgid "You don't have enough points to redeem." msgstr "" -#: erpnext/controllers/accounts_controller.py:1759 +#: erpnext/controllers/accounts_controller.py:1686 msgid "You don't have permission to create a Company Address. Please contact your System Manager." msgstr "" -#: erpnext/controllers/accounts_controller.py:1739 +#: erpnext/controllers/accounts_controller.py:1666 msgid "You don't have permission to update Company details. Please contact your System Manager." msgstr "" @@ -62467,19 +62544,19 @@ msgstr "" msgid "You don't have permission to update Received Qty DocField for item {0}" msgstr "" -#: erpnext/controllers/accounts_controller.py:1733 +#: erpnext/controllers/accounts_controller.py:1660 msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:313 msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1055 +#: erpnext/public/js/utils.js:1067 msgid "You have already selected items from {0} {1}" msgstr "" -#: erpnext/projects/doctype/project/project.py:420 +#: erpnext/projects/doctype/project/project.py:422 msgid "You have been invited to collaborate on the project {0}." msgstr "" @@ -62503,7 +62580,7 @@ msgstr "" msgid "You have not performed any reconciliations in this session yet." msgstr "" -#: erpnext/stock/doctype/item/item.py:1215 +#: erpnext/stock/doctype/item/item.py:1220 msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" @@ -62571,7 +62648,7 @@ msgstr "" msgid "Zero Balance" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:379 msgid "Zero Balance Journal: {0}" msgstr "" @@ -62597,7 +62674,7 @@ msgstr "" msgid "Zip File" msgstr "" -#: erpnext/stock/reorder_item.py:366 +#: erpnext/stock/reorder_item.py:368 msgid "[Important] [ERPNext] Auto Reorder Errors" msgstr "" @@ -62605,7 +62682,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2153 +#: erpnext/stock/stock_ledger.py:2201 msgid "after" msgstr "" @@ -62621,11 +62698,11 @@ msgstr "" msgid "as Title" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.js:1026 +#: erpnext/manufacturing/doctype/bom/bom.js:1030 msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1638 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1639 msgid "as of {0}" msgstr "" @@ -62642,7 +62719,7 @@ msgid "by {}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:846 msgid "dated {0}" msgstr "" @@ -62776,7 +62853,7 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:78 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" @@ -62793,7 +62870,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2154 +#: erpnext/stock/stock_ledger.py:2202 msgid "performing either one below:" msgstr "" @@ -62888,7 +62965,7 @@ msgstr "" msgid "to" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1259 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1265 msgid "to unallocate the amount of this Return Invoice before cancelling it." msgstr "" @@ -62937,11 +63014,11 @@ msgstr "" msgid "{0} '{1}' is disabled" msgstr "" -#: erpnext/accounts/utils.py:200 +#: erpnext/accounts/utils.py:201 msgid "{0} '{1}' not in Fiscal Year {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/services/status.py:209 +#: erpnext/manufacturing/doctype/work_order/services/status.py:218 msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" @@ -62949,7 +63026,7 @@ msgstr "" msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" -#: erpnext/controllers/accounts_controller.py:1294 +#: erpnext/controllers/accounts_controller.py:1221 msgid "{0} Account not found against Customer {1}." msgstr "" @@ -62973,7 +63050,7 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/accounts/utils.py:1590 +#: erpnext/accounts/utils.py:1585 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62985,11 +63062,11 @@ msgstr "" msgid "{0} Operations: {1}" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:232 +#: erpnext/stock/doctype/material_request/material_request.py:271 msgid "{0} Request for {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:393 +#: erpnext/stock/doctype/item/item.py:398 msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item" msgstr "" @@ -63039,6 +63116,9 @@ msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:63 #: erpnext/accounts/report/pos_register/pos_register.py:120 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:28 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:35 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:42 msgid "{0} and {1} are mandatory" msgstr "" @@ -63046,11 +63126,11 @@ msgstr "" msgid "{0} asset cannot be transferred" msgstr "" -#: erpnext/controllers/trends.py:66 +#: erpnext/controllers/trends.py:70 msgid "{0} can be either {1} or {2}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:279 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:297 msgid "{0} can not be negative" msgstr "" @@ -63062,7 +63142,7 @@ msgstr "" msgid "{0} cannot be changed with opened Opening Entries." msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 +#: erpnext/public/js/utils/sales_common.js:334 msgid "{0} cannot be greater than 100" msgstr "" @@ -63074,12 +63154,12 @@ msgstr "" msgid "{0} cannot be zero" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:992 +#: erpnext/public/js/templates/shop_floor_template.html:1012 msgid "{0} completed job cards" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:130 -#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:137 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:214 #: erpnext/stock/doctype/pick_list/mapper.py:79 #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:323 msgid "{0} created" @@ -63089,11 +63169,11 @@ msgstr "" msgid "{0} creation for the following records will be skipped." msgstr "" -#: erpnext/setup/doctype/company/company.py:364 +#: erpnext/setup/doctype/company/company.py:366 msgid "{0} currency must be same as company's default currency. Please select another account." msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.py:286 +#: erpnext/buying/doctype/purchase_order/purchase_order.py:287 msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution." msgstr "" @@ -63109,7 +63189,15 @@ msgstr "" msgid "{0} does not belong to the Company {1}." msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:860 +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:100 +msgid "{0} doesn't belong to Company {1}. Please select a Cost Center that belongs to Company {1}." +msgstr "" + +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:57 +msgid "{0} doesn't belong to Company {1}. Please select an Income Account that belongs to Company {1}." +msgstr "" + +#: erpnext/public/js/templates/shop_floor_template.html:880 msgid "{0} draft job cards awaiting submission" msgstr "" @@ -63118,11 +63206,11 @@ msgid "{0} entered twice in Item Tax" msgstr "" #: erpnext/setup/doctype/item_group/item_group.py:47 -#: erpnext/stock/doctype/item/item.py:524 +#: erpnext/stock/doctype/item/item.py:529 msgid "{0} entered twice {1} in Item Taxes" msgstr "" -#: erpnext/accounts/utils.py:137 +#: erpnext/accounts/utils.py:138 #: erpnext/projects/doctype/activity_cost/activity_cost.py:40 msgid "{0} for {1}" msgstr "" @@ -63131,7 +63219,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:852 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -63159,6 +63247,14 @@ msgstr "" msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:114 +msgid "{0} is a group Cost Center. Please select a non-group Cost Center." +msgstr "" + +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:78 +msgid "{0} is a group account. Please select a non-group Income Account." +msgstr "" + #: erpnext/accounts/doctype/pos_profile/pos_profile.py:95 msgid "{0} is a mandatory Accounting Dimension.
Please set a value for {0} in Accounting Dimensions section." msgstr "" @@ -63169,7 +63265,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/public/js/shop_floor/shop_floor.js:1481 +#: erpnext/public/js/shop_floor/shop_floor.js:1516 msgid "{0} is already in progress. Pause it or complete the session." msgstr "" @@ -63181,11 +63277,19 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:64 +msgid "{0} is disabled. Please select a valid Income Account." +msgstr "" + +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:107 +msgid "{0} is disabled. Please select an enabled Cost Center." +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:514 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:865 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:871 msgid "{0} is mandatory for Item {1}" msgstr "" @@ -63202,11 +63306,11 @@ msgstr "" msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1884 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1885 msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:239 +#: erpnext/selling/doctype/customer/customer.py:251 msgid "{0} is not a company bank account" msgstr "" @@ -63226,7 +63330,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:198 +#: erpnext/controllers/item_variant.py:260 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -63234,10 +63338,14 @@ msgstr "" msgid "{0} is not a valid {1} fieldname." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:168 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:186 msgid "{0} is not added in the table" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:71 +msgid "{0} is not an Income Account. Please select a valid Income Account." +msgstr "" + #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:146 msgid "{0} is not enabled in {1}" msgstr "" @@ -63246,11 +63354,11 @@ msgstr "" msgid "{0} is not running. Cannot trigger events for this document" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:478 +#: erpnext/stock/doctype/material_request/material_request.py:517 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2689 msgid "{0} is on hold until {1}" msgstr "" @@ -63258,6 +63366,10 @@ msgstr "" msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." msgstr "" +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:179 +msgid "{0} is required to get raw materials when {1} is set." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:546 msgid "{0} items disassembled" msgstr "" @@ -63282,10 +63394,18 @@ msgstr "" msgid "{0} items to return" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:901 +#: erpnext/public/js/templates/shop_floor_template.html:921 msgid "{0} job cards awaiting Manufacture entry" msgstr "" +#: erpnext/accounts/doctype/dunning_type/dunning_type.py:144 +msgid "{0} languages are marked as default languages. Please select only one of them." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:160 +msgid "{0} must be a group warehouse." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:219 msgid "{0} must be negative in return document" msgstr "" @@ -63298,7 +63418,7 @@ msgstr "" msgid "{0} not found for item {1}" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:706 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:709 msgid "{0} parameter is invalid" msgstr "" @@ -63306,7 +63426,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:942 +#: erpnext/public/js/templates/shop_floor_template.html:962 msgid "{0} pending job cards" msgstr "" @@ -63318,7 +63438,7 @@ msgstr "" msgid "{0} skipped (see Error Log)" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:1030 +#: erpnext/public/js/templates/shop_floor_template.html:1050 msgid "{0} submitted today" msgstr "" @@ -63335,11 +63455,11 @@ msgstr "" msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:1115 +#: erpnext/stock/doctype/pick_list/pick_list.py:1136 msgid "{0} units of Item {1} is not available in any of the warehouses." msgstr "" -#: erpnext/stock/doctype/pick_list/pick_list.py:1108 +#: erpnext/stock/doctype/pick_list/pick_list.py:1129 msgid "{0} units of Item {1} is not available in any of the warehouses. Other Pick Lists exist for this item." msgstr "" @@ -63347,16 +63467,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1800 erpnext/stock/stock_ledger.py:2325 -#: erpnext/stock/stock_ledger.py:2339 +#: erpnext/stock/stock_ledger.py:1848 erpnext/stock/stock_ledger.py:2373 +#: erpnext/stock/stock_ledger.py:2387 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2429 erpnext/stock/stock_ledger.py:2474 +#: erpnext/stock/stock_ledger.py:2477 erpnext/stock/stock_ledger.py:2522 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1794 +#: erpnext/stock/stock_ledger.py:1842 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -63368,19 +63488,19 @@ msgstr "" msgid "{0} valid serial nos for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.js:1265 +#: erpnext/stock/doctype/item/item.js:1286 msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 -msgid "{0} view is currently unsupported in Custom Financial Report." -msgstr "" +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:270 +msgid "{0} view is currently unsupported in Custom Financial Report" +msgstr "Zobrazení {0} není v uživatelské finanční sestavě aktuálně podporováno" #: erpnext/accounts/doctype/payment_term/payment_term.js:19 msgid "{0} will be given as discount." msgstr "" -#: erpnext/public/js/utils/barcode_scanner.js:523 +#: erpnext/public/js/utils/barcode_scanner.js:532 msgid "{0} will be set as the {1} in subsequently scanned items" msgstr "" @@ -63410,7 +63530,7 @@ msgstr "" msgid "{0} {1} does not exist" msgstr "" -#: erpnext/accounts/party.py:577 +#: erpnext/accounts/party.py:593 msgid "{0} {1} has accounting entries in currency {2} for company {3}. Please select a receivable or payable account with currency {2}." msgstr "" @@ -63424,11 +63544,11 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/services/status.py:35 #: erpnext/selling/doctype/sales_order/services/status.py:45 -#: erpnext/stock/doctype/material_request/material_request.py:258 +#: erpnext/stock/doctype/material_request/material_request.py:297 msgid "{0} {1} has been modified. Please refresh." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:285 +#: erpnext/stock/doctype/material_request/material_request.py:324 msgid "{0} {1} has not been submitted so the action cannot be completed" msgstr "" @@ -63458,11 +63578,11 @@ msgstr "" msgid "{0} {1} is cancelled or closed" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:437 +#: erpnext/stock/doctype/material_request/material_request.py:476 msgid "{0} {1} is cancelled or stopped" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:275 +#: erpnext/stock/doctype/material_request/material_request.py:314 msgid "{0} {1} is cancelled so the action cannot be completed" msgstr "" @@ -63470,11 +63590,11 @@ msgstr "" msgid "{0} {1} is closed" msgstr "" -#: erpnext/accounts/party.py:824 +#: erpnext/accounts/party.py:840 msgid "{0} {1} is disabled" msgstr "" -#: erpnext/accounts/party.py:830 +#: erpnext/accounts/party.py:846 msgid "{0} {1} is frozen" msgstr "" @@ -63482,7 +63602,7 @@ msgstr "" msgid "{0} {1} is fully billed" msgstr "" -#: erpnext/accounts/party.py:834 +#: erpnext/accounts/party.py:850 msgid "{0} {1} is not active" msgstr "" @@ -63494,7 +63614,7 @@ msgstr "" msgid "{0} {1} is not associated with {2} {3}" msgstr "" -#: erpnext/accounts/utils.py:133 +#: erpnext/accounts/utils.py:134 msgid "{0} {1} is not in any active Fiscal Year" msgstr "" @@ -63546,7 +63666,7 @@ msgstr "" msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}" msgstr "" -#: erpnext/stock/services/base_stock_gl_composer.py:226 +#: erpnext/stock/services/base_stock_gl_composer.py:282 msgid "{0} {1}: Cost Center is mandatory for Item {2}" msgstr "" @@ -63578,11 +63698,11 @@ msgstr "" msgid "{0}%" msgstr "" -#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/controllers/website_list_for_contact.py:212 msgid "{0}% Billed" msgstr "" -#: erpnext/controllers/website_list_for_contact.py:218 +#: erpnext/controllers/website_list_for_contact.py:220 msgid "{0}% Delivered" msgstr "" @@ -63615,23 +63735,23 @@ msgstr "" msgid "{0}: Virtual DocType (no database table)" msgstr "" -#: erpnext/stock/doctype/item/item.js:1181 +#: erpnext/stock/doctype/item/item.js:1202 msgid "{0}: remove invalid value(s) {1}" msgstr "" -#: erpnext/stock/doctype/item/item.js:1188 +#: erpnext/stock/doctype/item/item.js:1209 msgid "{0}: select the typed value {1} from the list or clear it" msgstr "" -#: erpnext/controllers/accounts_controller.py:487 +#: erpnext/controllers/accounts_controller.py:493 msgid "{0}: {1} does not belong to the Company: {2}" msgstr "" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1354 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1356 msgid "{0}: {1} does not exist" msgstr "{0}: {1} neexistuje" -#: erpnext/setup/doctype/company/company.py:351 +#: erpnext/setup/doctype/company/company.py:353 msgid "{0}: {1} is a group account." msgstr "" @@ -63639,15 +63759,15 @@ msgstr "" msgid "{0}: {1} must be less than {2}" msgstr "" -#: erpnext/controllers/buying_controller.py:1028 +#: erpnext/controllers/buying_controller.py:1036 msgid "{count} Assets created for {item_code}" msgstr "" -#: erpnext/controllers/buying_controller.py:928 +#: erpnext/controllers/buying_controller.py:936 msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:666 +#: erpnext/controllers/stock_controller.py:668 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" diff --git a/erpnext/locale/da.po b/erpnext/locale/da.po index a3d4998ff5a..74c61ccbc2a 100644 --- a/erpnext/locale/da.po +++ b/erpnext/locale/da.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-07-05 10:19+0000\n" -"PO-Revision-Date: 2026-07-05 21:31\n" +"POT-Creation-Date: 2026-07-19 10:04+0000\n" +"PO-Revision-Date: 2026-07-19 13:55\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr " Stykliste" #. Label of the default_wip_warehouse (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid " Default Work In Progress Warehouse " -msgstr "" +msgstr " Standardlager for igangværende arbejde " #. Label of the istable (Check) field in DocType 'Inventory Dimension' #: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json @@ -62,7 +62,7 @@ msgstr " Navn" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:144 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:185 msgid " Phantom Item" -msgstr "" +msgstr " Fantomgenstand" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:602 msgid " Rate" @@ -86,15 +86,15 @@ msgstr " Underenhed" msgid " Summary" msgstr " Oversigt" -#: erpnext/stock/doctype/item/item.py:281 +#: erpnext/stock/doctype/item/item.py:286 msgid "\"Customer Provided Item\" cannot be Purchase Item also" msgstr "\"Kunde Leverede Artikel\" kan ikke være Indkøbe Artikel" -#: erpnext/stock/doctype/item/item.py:283 +#: erpnext/stock/doctype/item/item.py:288 msgid "\"Customer Provided Item\" cannot have Valuation Rate" msgstr "\"Kunde Leverede Artikel\" kan ikke have Værdiansættelsesrate" -#: erpnext/stock/doctype/item/item.py:385 +#: erpnext/stock/doctype/item/item.py:390 msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item" msgstr "\"Er anlægsaktiv\" kan ikke afkrydses, da der findes aktiv post for artikel" @@ -144,7 +144,7 @@ msgstr "% Færdig" #. Label of the cost_allocation_per (Percent) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "% Cost Allocation" -msgstr "" +msgstr "% Omkostningsallokering" #. Label of the per_delivered (Percent) field in DocType 'Pick List' #. Label of the per_delivered (Percent) field in DocType 'Subcontracting Inward @@ -154,7 +154,7 @@ msgstr "" msgid "% Delivered" msgstr "% Leveret" -#: erpnext/manufacturing/doctype/bom/bom.js:1022 +#: erpnext/manufacturing/doctype/bom/bom.js:1026 #, python-format msgid "% Finished Item Quantity" msgstr "% Færdig Artikel Antal" @@ -259,7 +259,7 @@ msgstr "% af materialer leveret mod denne Plukliste" msgid "% of materials delivered against this Sales Order" msgstr "% af materialer leveret mod denne Salg Ordre" -#: erpnext/controllers/accounts_controller.py:1298 +#: erpnext/controllers/accounts_controller.py:1225 msgid "'Account' in the Accounting section of Customer {0}" msgstr "\"Konto\" i Regnskab Sektion for Kunde {0}" @@ -267,7 +267,7 @@ msgstr "\"Konto\" i Regnskab Sektion for Kunde {0}" msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Tillad flere Salg Ordrer mod Kundes Indkøb Ordre'" -#: erpnext/controllers/trends.py:62 +#: erpnext/controllers/trends.py:66 msgid "'Based On' and 'Group By' can not be the same" msgstr "" @@ -275,7 +275,7 @@ msgstr "" msgid "'Days Since Last Order' must be greater than or equal to zero" msgstr "'Dage siden sidste ordre' skal være større end eller lig med nul" -#: erpnext/controllers/accounts_controller.py:1303 +#: erpnext/controllers/accounts_controller.py:1230 msgid "'Default {0} Account' in Company {1}" msgstr "'Standard {0} Konto' i Selskab {1}" @@ -284,7 +284,7 @@ msgid "'Entries' cannot be empty" msgstr "'Indtastninger' må ikke være tomme" #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:24 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:127 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:132 #: erpnext/stock/report/stock_analytics/stock_analytics.py:322 msgid "'From Date' is required" msgstr "'Fra Dato' er påkrævet" @@ -293,7 +293,7 @@ msgstr "'Fra Dato' er påkrævet" msgid "'From Date' must be after 'To Date'" msgstr "'Fra Dato' skal være efter 'Til Dato'" -#: erpnext/stock/doctype/item/item.py:468 +#: erpnext/stock/doctype/item/item.py:473 msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" @@ -312,7 +312,7 @@ msgid "'Opening'" msgstr "'Åbning'" #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:27 -#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:129 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:134 #: erpnext/stock/report/stock_analytics/stock_analytics.py:328 msgid "'To Date' is required" msgstr "'Til dato' er påkrævet" @@ -337,8 +337,8 @@ msgstr "'{0}' konto bruges allerede af {1}. Brug en anden konto." msgid "'{0}' has been already added." msgstr "'{0}' er allerede tilføjet." -#: erpnext/setup/doctype/company/company.py:376 -#: erpnext/setup/doctype/company/company.py:387 +#: erpnext/setup/doctype/company/company.py:378 +#: erpnext/setup/doctype/company/company.py:389 msgid "'{0}' should be in company currency {1}." msgstr "'{0}' skal være i selskab valuta {1}." @@ -371,7 +371,7 @@ msgstr "(D) Saldo Lagerværdi" #. Description of the 'Capacity' (Int) field in DocType 'Item Lead Time' #: erpnext/stock/doctype/item_lead_time/item_lead_time.json msgid "(Daily Yield * No of Units Produced) / 100" -msgstr "" +msgstr "(Dagligt udbytte * Antal producerede enheder) / 100" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:199 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:249 @@ -397,7 +397,7 @@ msgstr "(G) Summen af Ændringer i Lagerværdi" #. Time' #: erpnext/stock/doctype/item_lead_time/item_lead_time.json msgid "(Good Units Produced / Total Units Produced) × 100" -msgstr "" +msgstr "(Gode producerede enheder / Samlet antal producerede enheder) × 100" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:274 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:166 @@ -439,7 +439,7 @@ msgstr "(Indkøp Ordre + Materiale Anmodning + Faktisk Udgift)" #. Time' #: erpnext/stock/doctype/item_lead_time/item_lead_time.json msgid "(Total Workstation Time / Manufacturing Time) * 60" -msgstr "" +msgstr "(Samlet arbejdsstationstid / Produktionstid) * 60" #. Description of the 'From No' (Int) field in DocType 'Share Transfer' #. Description of the 'To No' (Int) field in DocType 'Share Transfer' @@ -456,7 +456,7 @@ msgstr "* Vil blive beregnet i transaktionen." #: erpnext/stock/doctype/item/item_prices.html:128 #: erpnext/stock/doctype/item/item_prices.html:136 msgid "+ Add Price" -msgstr "" +msgstr "+ Tilføj pris" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:112 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:360 @@ -477,11 +477,11 @@ msgstr "0-30 Dage" msgid "1 Loyalty Points = How much base currency?" msgstr "1 Loyalitetspoint = Hvor meget basisvaluta?" -#: erpnext/public/js/templates/shop_floor_template.html:992 +#: erpnext/public/js/templates/shop_floor_template.html:1012 msgid "1 completed job card" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:860 +#: erpnext/public/js/templates/shop_floor_template.html:880 msgid "1 draft job card awaiting submission" msgstr "" @@ -492,17 +492,17 @@ msgstr "1 time" #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "1 invoice" -msgstr "" +msgstr "1 faktura" -#: erpnext/public/js/templates/shop_floor_template.html:901 +#: erpnext/public/js/templates/shop_floor_template.html:921 msgid "1 job card awaiting Manufacture entry" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:942 +#: erpnext/public/js/templates/shop_floor_template.html:962 msgid "1 pending job card" msgstr "" -#: erpnext/public/js/templates/shop_floor_template.html:1030 +#: erpnext/public/js/templates/shop_floor_template.html:1050 msgid "1 submitted today" msgstr "" @@ -623,14 +623,14 @@ msgstr "90-120 Dage" msgid "90 Above" msgstr "90 Over" -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292 -#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1293 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1294 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1295 msgid "<0" msgstr "<0" #: erpnext/assets/doctype/asset/asset.py:550 msgid "Cannot create asset.
You're trying to create {0} asset(s) from {2} {3}.
However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." -msgstr "" +msgstr "Kan ikke oprette et aktiv.
Du prøver at oprette {0} aktiv(er) fra {2} {3}.
Der blev dog kun købt {1} vare(r) , og der findes allerede {4} aktiver mod {5}." #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:59 msgid "From Time cannot be later than To Time for {0}" @@ -638,7 +638,7 @@ msgstr "Fra Tidspunkt kan ikke være senere end Til Tidspunkt for #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:436 msgid "Row #{0}: Bundle {1} in warehouse {2} has insufficient packed items:" -msgstr "" +msgstr "Række #{0}: Bundt {1} på lager {2} har utilstrækkelige pakkede varer:{3}
" #. Content of the 'Help Text' (HTML) field in DocType 'Process Statement Of #. Accounts' @@ -660,7 +660,22 @@ msgid "{3}
\n" "Hello {{ customer.customer_name }},
PFA your Statement Of Accounts from {{ doc.from_date }} to {{ doc.to_date }}.
Regnskabsopgørelse for {{ customer.customer_name }}Hej {{ customer.customer_name }},
PFA din regnskabsopgørelse fra {{ doc.from_date }} til {{ doc.to_date }}. The package Item will have Is Stock Item as No and Is Sales Item as Yes.
If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Product Bundle Item.
" -msgstr "" +msgstr "Saml en gruppe af elementer til en anden element. Dette er nyttigt, hvis du samler bestemte varer i en pakke, og du har lager af de pakkede varer og ikke den samlede vare.
\n" +"Pakken Vare vil have Er lagervare som Nej og Er salgsvare som Ja.
Hvis du sælger bærbare computere og rygsække separat og har en specialpris, hvis kunden køber begge, vil bærbar computer + rygsæk være en ny produktpakke.
" #. Content of the 'Help' (HTML) field in DocType 'Currency Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json @@ -717,7 +738,10 @@ msgid "There are 3 variables that could be used within the endpoint, result key and in values of the parameter.
\n" "Exchange rate between {from_currency} and {to_currency} on {transaction_date} is fetched by the API.
\n" "Example: If your endpoint is exchange.com/2021-08-01, then, you will have to input exchange.com/{transaction_date}
" -msgstr "" +msgstr "Der er 3 variabler, der kan bruges i slutpunktet, resultatnøglen og i parameterens værdier.
\n" +"Valutakurs mellem {from_currency} og {to_currency} på {transaction_date} hentes af API'en.
\n" +"Eksempel: Hvis dit slutpunkt er exchange.com/2021-08-01, skal du indtaste exchange.com/{transaction_date}
" #. Content of the 'Body and Closing Text Help' (HTML) field in DocType 'Dunning #. Letter Text' @@ -728,7 +752,12 @@ msgid "The fieldnames you can use in your template are the fields in the document. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
" -msgstr "" +msgstr "De feltnavne, du kan bruge i din skabelon, er felterne i dokumentet. Du kan finde felterne i alle dokumenter via Opsætning > Tilpas formularvisning og vælg dokumenttype (f.eks. salgsfaktura)
\n\n" +"Skabeloner kompileres ved hjælp af Jinja-skabelonsproget. For at lære mere om Jinja, læs denne dokumentation.
" #. Content of the 'Contract Template Help' (HTML) field in DocType 'Contract #. Template' @@ -742,7 +771,15 @@ msgid "The field names you can use in your Contract Template are the fields in the Contract for which you are creating the template. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Contract)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
" -msgstr "" +msgstr "Kontrakt for kunde {{ party_name }}\n\n"
+"-Gyldig fra: {{ start_date }} \n"
+"-Gyldig til: {{ end_date }}\n"
+"\n\n"
+"De feltnavne, du kan bruge i din kontraktskabelon, er felterne i den kontrakt, som du opretter skabelonen til. Du kan finde felterne for alle dokumenter via Opsætning > Tilpas formularvisning og valg af dokumenttype (f.eks. kontrakt)
\n\n" +"Skabeloner kompileres ved hjælp af Jinja-skabelonsproget. For at lære mere om Jinja, læs denne dokumentation.
" #. Content of the 'Terms and Conditions Help' (HTML) field in DocType 'Terms #. and Conditions' @@ -756,18 +793,26 @@ msgid "The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
" -msgstr "" +msgstr "Leveringsbetingelser for ordrenummer {{ name }}\n\n"
+"-Ordredato: {{ transaction_date }} \n"
+"-Forventet leveringsdato: {{ delivery_date }}\n"
+"\n\n"
+"De feltnavne, du kan bruge i din e-mailskabelon, er felterne i det dokument, hvorfra du sender e-mailen. Du kan finde felterne i alle dokumenter via Opsætning > Tilpas formularvisning og vælg dokumenttype (f.eks. salgsfaktura)
\n\n" +"Skabeloner kompileres ved hjælp af Jinja-skabelonsproget. For at lære mere om Jinja, læs denne dokumentation.
" #. Content of the 'account_no_settings' (HTML) field in DocType 'Cheque Print #. Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "" -msgstr "" +msgstr "" #. Content of the 'html_19' (HTML) field in DocType 'Cheque Print Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "" -msgstr "" +msgstr "" #. Content of the 'Date Settings' (HTML) field in DocType 'Cheque Print #. Template' @@ -777,19 +822,19 @@ msgstr "